.navbar {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px 10%;
    position: relative;
}

.navbar_logo {
    width: 100px;
    padding: 10px;
}

.navbar_content {
    width: 100%;
}

.navbar_title {
    font-size: 40px;
    font-weight: bold;
    color: wheat;
}

.navbar_links {
    font-size: 20px;
    color: white;
    padding: 10px;
    font-weight: bold;
}

.navbar_active {
    color: wheat;
}

.navbar_links:hover {
    transition: color 0.3s;
    color: wheat;
}

.expandList {
    position: absolute;
    display: none;
    width: 200px;
    background-color: black;
    padding: 12px 0;
    border-radius: 10px;
    z-index: 10;
}

.hideOrdi {
    display: none;
}

#hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

@media (max-width: 900px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar_logo {
        width: 70px;
    }

    .navbar_title {
        font-size: 30px;
    }

    .navbar_links {
        font-size: 15px;
        margin: 10px;
    }

    .navbar_content {
        display: none;
        position: absolute;
        background-color: black;
        right: 10%;
        left: 20%;
        top: 10%;
        width: 70%;
        padding: 12px 0;
        border-radius: 10px;
    }

    .expandList {
        position: relative;
        width: 100%;
    }

    .hideOrdi {
        display: block;
    }

    #hamburger {
        display: block;
    }
}