@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJA.ttf) format('truetype');
}
/* Change to your background color */
/* Change to your text color */
* {
  padding: 0;
  margin: 0;
  color: #ccc;
  font-family: "Poppins", Sans-Serif;
}
body {
  background: #fef6f0 linear-gradient(45deg, #5e40bf 0%, /* Change to your gradient start color */ #5e40bf 80%, /* Primary color with 60% */ #fef6f0 100% /* "Less red" color with 100% (you can adjust this percentage) fef6f0 */) fixed;
}
.root {
  height: 100vh;
  width: 100vw;
  text-align: center;
}
.avatar-container {
  margin-top: 60px;
}
.avatar {
  border-radius: 50%;
  border: 2px solid #fff;
}
.user {
  text-align: center;
  width: 100vw;
  margin-top: 1em;
}
.user-name,
.description {
  text-align: center;
  display: block;
  margin-top: 2px;
}
.social-url {
  text-align: center;
  font-size: 18px;
  margin: 20px;
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 15px;
  font-weight: 600;
}
.link {
  text-decoration: none;
}
@media (min-width: 600px) {
  .social-url {
    margin-left: 100px;
    margin-right: 100px;
  }
}
