/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 80px;
  z-index: 100;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
  transition: color 0.3s ease;
}

.navbar a.active,
.navbar a:hover {
  color: #ffb347;
}

/* Main Content */
.main {
  margin-top: 80px;
  padding: 30px;
}

.section {
  margin-bottom: 50px;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #555;
}

ul {
  margin-bottom: 20px;
}

ul li {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #555;
}

/* Animations */
.animate__animated {
  animation-duration: 1s;
}

.animate__bounce {
  animation-name: bounce;
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .navbar {
    height: 60px;
  }

  .navbar a {
    font-size: 16px;
  }

  .main {
    margin-top: 60px;
    padding: 20px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  p {
    font-size: 16px;
  }

  ul li {
    font-size: 16px;
  }
}
