body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background:black;
    color:aqua;
}

@font-face {
font-family: AWfont;
src: url('AWfont.otf');
}

.container {
    padding: 50px;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
    color: white;
}

/* Style for when the navbar is hidden */
.navbar-hidden {
    display: none !important; /* !important to override other display styles */
}

.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
}
.nav-links li {
    margin: 0 10px;
    padding:20px;
}
.nav-links a {
    color: white;
    text-decoration: none;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
}
.owl-carousel img {
    width: 100%;
    height: auto;
}


.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 80px;
        left: 0;
        z-index:99;
        background-color: #333;
    }
    .nav-links.active {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
    .logo img {
      max-width:200px
    }

    .footer {
        min-height:350px;
    }

    .item img {
        height:300px;   
    }
}