body {
  font-family: 'Roboto', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  text-align: center;
}

.name {
  transform: translateY(-25%);
  user-select: none;
  cursor: default;
}

h1 {
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  margin: 0;
}

.description {
  font-weight: 300;
  line-height: 24px;
  margin: 10px 0 20px 0;
}

.bold {
  font-weight: 700;
}

.light {
  font-weight: 300;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.socials a {
  color: black;
  text-decoration: none;
  font-size: 30px;
  transition: color 0.3s ease;
}

.socials a:hover {
  color: #b509ac;
}

@media (max-width: 600px) {
  h1 {
    font-size: 32px;
    line-height: 40px;
  }

  .socials a {
    font-size: 26px;
  }

  .name {
    transform: translateY(-20%);
  }
}
