body,
html {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.header {
    position: absolute;
    top: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #00000033;
    padding: 0 50px;
    box-sizing: border-box;
    z-index: 1000;
}

.logo img {
    height: 90px;
    margin-top: 55px;
}

.menu {
    display: flex;
    gap: 20px;
}


.menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
}

.mobile-menu-container {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
}

.mobile-menu a {
    color: white;
    text-align: center;
    padding: 10px 0;
    text-decoration: none;
    border-bottom: 1px solid #fff;
}

@media (max-width: 768px) {
    .header {
        padding: 0 20px;
        height: auto;
        flex-direction: row;
        justify-content: space-between;
    }

    .logo img {
        height: 60px;
        margin-top: 0;
    }

    .menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
        color: white;
    }

    .mobile-menu-container.active {
        display: block;
        animation: fadeIn 0.3s ease-in-out;
    }
}

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

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


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@media only screen and (max-width: 600px) {

    body,
    html {
        width: 100%;
        height: 100%;
    }
}