.instructions-container{
    position: absolute;
    z-index: 10000;
    right: 1%;
    bottom: 5%;

    max-width: 20%;
    max-height: 50%;
    background-color: rgba(0, 40, 65, 0.397);
    border-radius: 10px;
    padding: 15px;

    overflow: hidden;
    overflow-y: auto;
    display: none;
}
.instructions-container::-webkit-scrollbar{
    width: 2px;
}
.instr-pop{
    right: 2%;
    background-color: transparent;
    overflow: visible;
    transform-origin: bottom right;
}
.instr-pop:hover{
    animation: buttonPop 0.1s linear forwards;
}
.instr-i{
    position: absolute;
    width: 100%;
    height: 100%;

    color: white;    
    font-size: 5vh;
    font-weight: 900;
    cursor: url(imgs/cursorButton.png) 20 20, auto;

    filter: drop-shadow(0px 0px 10px white);
}
.instr-i:hover{
    color: lightskyblue;
    filter: saturate(3)
}
.instructions{
    font-size: 2vh;
    color: white;
    font-family: 'Roboto', cursive;
    display: none;
}
.instr-exit{
    position: absolute;
    right: 5%;
    top: 0;
    font-size: 2.5vh;
    color: lightskyblue;
    cursor: url(imgs/cursorButton.png) 20 20, auto;
    transform-origin: center;
    padding: 5px;
    border-radius: 10px;
    font-family: 'Saira Stencil One', cursive;
    display: none;
}
.instr-exit:hover{
    animation: buttonPop 0.1s linear forwards;
    background-color: lightskyblue;
    color:black;
}