.menu {
    position: relative;
    height: 10vh;
    width: 100%;
    overflow: hidden;
    background-color: var(--theme);
}

.menu .menu-content,
.menu-responsive,
.menu h1 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.menu-responsive * {
    cursor: pointer;
}

#expand-menu {
    display: none;
}

#close-menu {
    display: none;
}

.menu h1 {
    margin-left: 10px;
}

.menu-icon,
.menu-content a {
    font-weight: bold;
    color: white;
}

.menu-icon {
    font-size: 35px;
}

.menu-content,
.menu-responsive {
    float: right;
}

.menu-content a {
    transition: all 0.5s;
    display: inline-block;
    padding: 25px 5px;
}

.menu-content a:hover {
    color: var(--theme);
    box-shadow: inset 0px 75px 0px white;
}

.menu-responsive {
    display: none;
}

.menu-responsive img {
    width: 75%;
    height: 75%;
    filter: invert(1);
}

@media only screen and (max-width: 950px) {
    .menu .menu-content {
        display: block;
        justify-content: auto;
        align-items: auto;
        position: fixed;
        width: 100%;
        height: 100%;
        padding: 0px;
        margin: 0px;
        top: 0%;
        left: 0%;
        z-index: 15;
        background-color: var(--theme);
        transition: all 0.5s;
        backdrop-filter: blur(10px);
        overflow: hidden;
    }

    #close-menu {
        display: block;
    }

    .menu-content a {
        text-align: center;
        display: block;
        width: 100%;
    }

    .menu-responsive {
        display: inline-flex;
    }

    #expand-menu:checked+.menu-responsive~.menu-content {
        top: 0%;
        opacity: 1;
    }

    #expand-menu:not(:checked)+.menu-responsive~.menu-content {
        top: -100%;
        opacity: 0;
    }
}