* {
  box-sizing: border-box;
}

body {
  background-color: black;
  margin: 0;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
  background: url('media/images/bg.jpg') center/cover no-repeat;
}


section {
  padding: 80px 20px 60px; 
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: fadeIn 3.5s ease;
}

#home {
  color: white;
  text-align: center;
}

#home h1 {
  padding-bottom: 30px;
  font-family: monospace;
}

.pfp img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0;
}

p {
  max-width: 600px;
  text-align: center;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
}

button {
  padding: 10px 20px;
  border: none;
  background: white;
  cursor: pointer;
  margin-top: 10px;
}

.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.links a:hover {
  transform: scale(1.05);
}

.info-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  gap: 50px;
  max-width: 2000px;
}

.assets,
.about {
  font-family: "Comic Sans MS", "Comic Sans";
  color: white;
  padding: 20px;
  margin: auto;
  margin-top: 0%;
  max-width: 1000px;
}



.assets p,
.about p {
  text-align: left;
}

.assets a,
.about a {
  color: white;
  text-decoration: underline;
}

.assets h1,
.about h1 {
  text-align: center;
}

.footer {
  background-color: #211f21;
  color: #bfbfbf;
  padding: 15px;
  text-align: center;
  align-content: center;
  place-items: center;
}

.footer-credits p {
  font-size: 20px;
  padding-top: 20px;
  align-content: center;
}


.footer-contact h3,
.footer-contact a {
  color: #bfbfbf;
  text-decoration: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ======================== */
/*    MOBILE ADJUSTMENTS    */
/* ======================== */
@media (max-width: 768px) {

  .info-container {
    flex-direction: column;
    align-items: center;
  }

  .assets,
  .about {
    max-width: 100%;
  }

  .pfp img {
    width: 120px;
    height: 120px;
  }

  section {
    padding: 100px 15px 60px;
  }

  .links img {
    scale: 0.75;
  }

}

/* ========================= */
/*    EXTRA SMALL DEVICES    */
/* ========================= */
@media (max-width: 480px) {

  h1 {
    font-size: 1.8rem;
  }

  p {
    font-size: 0.9rem;
  }
}
