html {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
}

.content {
  display: flex;
  align-items: center;
  text-align: center;
  background-image: linear-gradient(
    0deg,
    hsl(218deg 100% 46%) 0%,
    hsl(215deg 100% 47%) 11%,
    hsl(213deg 100% 48%) 22%,
    hsl(211deg 100% 49%) 33%,
    hsl(209deg 100% 49%) 44%,
    hsl(206deg 100% 50%) 56%,
    hsl(204deg 100% 50%) 67%,
    hsl(202deg 100% 50%) 78%,
    hsl(200deg 100% 50%) 89%,
    hsl(202deg 100% 60%) 100%
  );
  min-height: 100vh;
  overflow-y: hidden;
  color: #FFFFFF;
  flex-direction: column;
}

.name, .description {
  opacity: 98%;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.1);

}


.photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, .95);;
}

.links {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.83em;
}

.links a {
  margin-top: 0.83em;
  background-color: #FFFFFF;
  padding: 18px;
  padding-left: 36px;
  padding-right: 36px;
  border-radius: 48px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: opacity ease 0.3s;
  color: black;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.links :hover {
  opacity: 80%;
  transition: opacity ease 0.3s;
}

.social-icon {
  width: 32px;
  height: 32px;
  margin-right: 12px;
}