* {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: "Turret Road", serif;
  background-color: hsl(0, 0%, 0%);
  background-image: url(media/background.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: fadeIn 2s;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 550px;
  width: 100%;
  gap: 15px;
}

.top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
}
.top .pfp {
  border-radius: 50%;
  height: 150px;
}
.top .title {
  font-size: 3rem;
  color: hsl(0, 0%, 100%);
  font-weight: normal;
}

.bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.bottom .links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.bottom .links .link-icon {
  width: 40px;
  height: 40px;
  padding: 5px;
  fill: hsl(0, 0%, 100%);
  transition: transform 0.25s ease, fill 0.25s ease;
}
.bottom .links .link-icon:hover {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .top {
    gap: 15px;
  }
  .top .pfp {
    height: 125px;
  }
  .top .title {
    font-size: 2.5rem;
  }
  .top .title .title-description {
    font-size: 1.25rem;
  }
  .bottom .links {
    max-width: 250px;
  }
  .bottom .links .link-icon {
    width: 30px;
    height: 30px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
