@import url("https://fonts.googleapis.com/css2?family=Play:wght@700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.body {
  background: #000;
}

header {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ff6347;
}

.hero {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/hero-bg.jpg") center/cover;
  color: #fff;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
}

main {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
  align-self: center;
  margin-top: 15vh;
}

#title {
  font-family: "Play";
  font-size: 7.5vh;
  color: #fff;
  text-transform: uppercase;
}

section {
  margin-bottom: 40px;
}

.title h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
  position: relative;
}

.title h2::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background: #ff6347;
  bottom: -5px;
  left: 0;
}

.project {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.project h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.project p {
  font-size: 1rem;
  color: #666;
}

ul {
  list-style: disc inside;
  margin-top: 10px;
}

li {
  margin-bottom: 10px;
}

.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: auto;
  height: 5vh;
}

.footer p {
  font-size: 0.9rem;
}

/* Contact Section */
#contact a {
  color: #ff6347;
  text-decoration: none;
  transition: color 0.3s ease;
}

#contact a:hover {
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }
}

@media only screen and (max-width: 800px) {
  #title {
    font-size: 6.5vh;
  }
}

@media only screen and (max-width: 480px) {
  #title {
    font-size: 5vh;
  }

  main {
    margin-top: 20vh;
  }
}

@media only screen and (max-width: 380px) {
  #title {
    font-size: 4.5vh;
  }

  main {
    margin-top: 20vh;
  }
}
