#menu-toggle {
   visibility: hidden;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
    
}

#menu-toggle button{
    background-color: transparent;
    border: none;
}

#menu-toggle img {

    width: 40px;
}


/* STYLE HEADER  */

.toggleBox {
    text-shadow: 0px 0px 5px;
    border: 1px solid red;
    box-shadow: 0 0 10px red;
    justify-content: center;
    width: 250px;
    height: 330px;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    top: 20vh;
    padding: 20px;
    border-radius: 10px;
    background-color: rgb(10, 0, 0);
    

}

.toggleLinks {
    border-radius: 5px;
    box-shadow: 0 0 5px;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    
    

}


@media screen and (min-width: 0px) and (max-width : 1000px) {

    #menu-toggle {
        visibility: visible;
    }
}