body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f5f5f5;
  background-image: url("../img/chi-soldier_1920x1080.png");
  background-attachment: fixed;
  background-size: cover;
  height: 100vh;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(255, 255, 255, 0.75);
  z-index: -1;
}

.container {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 25px;
  transform: translateY(50px);
  opacity: 0;
  animation: scrollIn 1s ease forwards;
}
@keyframes scrollIn {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.title {
  margin-bottom: 20px;
}
.title a {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 75%;
  margin: 0 auto;
}
.title img {
  max-width: 100%;
  height: auto;
  pointer-events: none;
}
.bio {
  font-size: 24px;
  margin-bottom: 30px;
  color: #555;
  font-weight: bold;
}
.social-links {
  margin-top: 30px;
}
.social-links a {
  font-size: 48px;
  text-decoration: none;
  transition: color 0.3s ease;
  margin: 0 12px;
}
.spotify-link {
  color: #1DB954;
}
.spotify-link:hover {
  color: #20d660;
}
.youtube-link {
  color: #e60202;
}
.youtube-link:hover {
  color: #FF0000;
}
@media (max-width: 600px) {
  .container {
    max-width: 90%;
  }
  .title {
    font-size: 38px;
  }
  .bio {
    font-size: 18px;
  }
  body::before {
    height: 150%;
  }
}