.navbar {
    background-color: #386560;
    color: white;
    padding: 10px 15px;
    position: absolute;
    z-index: 10;
    width: 100%;
}

.navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hamburger {
    font-size: 26px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 2;
}

.flags {
    display: flex;
    gap: 10px;
}

.flags img {
    width: 24px;
    height: auto;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #386560;
    width: 100%;
    padding: 10px 0;
}

.mobile-menu a {
    color: white;
    padding: 10px 20px;
    text-decoration: none;
}

.mobile-menu a:hover {
    background-color: #2d4f4a;
}

.mobile-menu.show {
    display: flex;
}

/* LOGO */

.logo-svg {
    width: 200px;
    height: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    display: block;
    max-width: 100%;
}

/* STARS */

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.star,
.icon-star {
    position: absolute;
    font-size: 10px;
    color: #cfe4e2;
    opacity: 0.8;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}