
html {
    scroll-behavior: smooth;
}

.bg-lime-950 {
    background-color: rgb(0, 26, 0) !important;
}

.navbar {
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.navbar.scrolled {
    background-color: rgb(0, 67, 17);
    box-shadow: 0 3px 4px rgb(4, 8, 40);
}

* {
    font-family: 'Times New Roman', Times, serif;
}

@media (max-width: 600px) {
    * {
        font-size: small;
    }
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero .carousel {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
}

.hero .carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    animation: fade 12s infinite;
}

.hero .carousel img:nth-child(1) {
    animation-delay: 0s;
}

.hero .carousel img:nth-child(2) {
    animation-delay: 4s;
}

.hero .carousel img:nth-child(3) {
    animation-delay: 8s;
}

@keyframes fade {

    0%,
    41.66%,
    100% {
        opacity: 0;
    }

    8.33%,
    33.33% {
        opacity: 1;
    }
}

.hero .content {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
}

