@import url('https://fonts.googleapis.com/css2?family=Blaka+Ink&display=swap');

body {
  font-family: 'Comic Sans MS', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
  }

  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 50px;
  }

  nav ul li:hover {
    background-color: goldenrod;
    color: #fff;
    text-decoration: underline;
  }
  
section .btn a {
    background-color: goldenrod;
  }

  .btn:hover {
    opacity: 0.7;
  }

.navbar {
    background-color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    color: white;
  }

  h1 {
  font-family: "Blaka Ink", system-ui;
  font-weight: 600;
  font-style: normal;
  font-size: 35px;
    }



.left {
  left: 0;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  float: left;
  display: flex;
  flex-direction: column;
  animation: slideInRight 5s ease forwards;
}

@keyframes slideInLeft {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.right {
  right: 0;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
  float: right;
  display: flex;
  flex-direction: column;
  animation: slideInRight 5s ease forwards;
}

@keyframes slideInLeft {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

header .logo h1 {
  margin: 0;
}

.navbar ul li 

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  display: inline-block;
}
  
main section h2 {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #000;
    color: white;
    text-decoration: underline bold;
  }

  .hero {
    background: url('https://via.placeholder.com/1600x600') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
  }
  
  .hero-text {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .hero-text .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: gold;
    color: black;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
  }

  .features {
    padding: 2rem 1rem;
    background-color: #000;
    text-align: center;
  }
  
  .feature-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .feature {
    border: 1px solid gold;
    background: #333;
    padding: 1rem;
    width: 300px;
    box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.1);
    border-radius: 5px;
  }

  .feature:hover {
    opacity: 0.9;
    box-shadow: 20px 20px 10px rgba(rgba(#ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00e7)5, 0.1);
  }

  section ul li {
    padding: 2rem 1rem;
    background-color: #000;
    text-align: center;
  }
  
  section ul li {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }

  img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
  }
  
  section ul li {
    border: 1px solid gold;
    background: #333;
    padding: 1rem;
    width: 300px;
    box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    width: 300px;
    height: 300px;
    color: white;
  }

  section ul li:hover {
    opacity: 0.7;
    box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.1);
  }

  section ul a {
    box-shadow: 10px 20px 10px rgba(#ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00e7);
  }
  
  .call-to-action {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #000;
    color: #fff;
  }
  
  .call-to-action .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: goldenrod;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
  }

  .call-to-action .btn:hover {
    opacity: 0.7;
  }
  
  footer {
    text-align: center;
    padding: 1rem;
    background-color: #333;
    color: white;
    border-top: 1px solid goldenrod;
    font-size: 0.9rem;
    height: 30px;
    margin-bottom: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
  }
  
  nav ul li a:hover {
    background-color: goldenrod;
  }
  
  /* Basic styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 1rem;
    color: white;
}

.brand {
    font-size: 1.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: white;
    text-decoration: none;
}

.nav-links li a:hover {
    color: #ddd;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: fixed;
        top: 60px;
        left: 0;
        background-color: #333;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 1rem 0;
    }
}
