@media (max-width: 50rem) {
    #burger * {
        background-color: transparent;
        backdrop-filter: blur(10px);

    } #burger {
        -webkit-animation: comeDown 0.5s;
        -moz-animation: comeDown 0.5s;
        -ms-animation: comeDown 0.5s;
        -o-animation: comeDown 0.5s;
        animation: comeDown 0.5s;
        z-index: 1;
        padding-top: 1em;
        display: block;
        color: #6ea7fd;
        position: fixed;
        width: 100%;
        right: 0;
        top: 0;
        } #burger label {
            width: min-content;
            display: block;
            cursor: pointer;
            position: fixed;
            right: 1.5rem;
            z-index: 1;
            } #burger label span {
                background-color: #6ea7fd;
                display: block;
                height: 7px;
                position: relative;
                transition: all 0.3s ease-in-out;
                width: 30px;
                top: 15px;
                left: 0;
                right: 0;
                margin: auto;
                margin-top: 2px;
            } #burger label span:nth-child(2) {
                bottom: 50%;
            } #burger label span:first-child {
                transform-origin: top left;
            } #burger label span:last-child {
                transform-origin: bottom left;
        } #burger input[type="checkbox"] {
            display: none;
        } #burger input[type="checkbox"]:checked~label span:first-child {
            transform: translateY(20px) rotate(-45deg);
        } #burger input[type="checkbox"]:checked~label span:nth-child(3) {
            transform: translateY(-21px) rotate(45deg);
        } #burger input[type="checkbox"]:checked~label span:nth-child(2) {
            opacity: 0;
        } #burger input[type="checkbox"]:checked~ul {
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
        } #burger ul {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            list-style: none;
            margin: 0;
            padding: 0;
            height: 95vh;
            visibility: hidden;
            opacity: 0;
            transform: translateY(-50%);
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            z-index: 0;
            width: 100%;
            transition: all 0.3s ease-in-out;
        } #burger ul li {
                margin-bottom: 30px;
                } #burger ul li {
                    font-weight: bold;
                    font-size: 1.5em;
                    transition: all 0.2s ;
                    padding: 15px;
                } #burger ul li img {
                    padding-left: 15px;
        }
    }