@font-face {
    font-family: 'Lobster';
    src: url('../assets/fonts/Lobster_Two/LobsterTwo-Regular.ttf') format('truetype');
}
.logo{
    width: 26vw;
    height: auto;
    position: absolute;
    top: 0;
    left: 2vw;
}
.menu-flotante{
    z-index: 1 !important;
    position: sticky;
    top: 10px;
    padding: 1vw;
    width: 100%;
}
.lista-flotante{
    width: 31%;
    height: 150vw;
    position: absolute;
    top: 28vw;
    left: 2vw;
    overflow-y: scroll;
}
.logo-flotante{
    width: 33%;
}

.res-item{
    width: 65%;
    position: relative;
    left: 35%;
}
.res-back1{
    background-color: #66A436;
    color: #f9fffa;
}
.res-back2{
    background-color: #f9fffa;
}
.res-back3{
    background-color: #023d46;
    color: #f9fffa;
}
.res-back4{
    color: #d3fff8;
    background-color: #042405;
}
.font-res{
    color: #3e615b;
    font-size: 15px;
    font-family: Lobster;
}
.opciones-menu{
    border: 4px dashed #3f613e; 
    border-radius: 10px;
}
.mn-sel{
    background-color: #66A436;
    color: #f9fffa;
}
a,a:visited{
    color: #3e615b;
    font-size: normal;
}
a:active, a:hover{
    color:purple;
}
a:active{
    font-size: large;
}
.list-options{
    padding-top: 4px;
    padding-bottom: 4px;
    line-height: 115%;
}
a:hover, .list-options:hover{
    cursor: pointer;
}
.list-options:hover{
    background-color: #023d46;
    color: #f9fffa;
    border: 3px inset #f9fffa;
}
.btn-raro{
    color:#3e615b !important;
    border:1px solid #66A436 !important;
}
.logo:hover{
    cursor:pointer;
}
.animar-logo{
    animation: girar .4s linear;
}

@keyframes girar{
    0%{
        transform: rotate3d(0, 1, 0, 0deg);
    }
    50%{
        transform: rotate3d(0, 1, 0, 90deg);
    }
    100%{
        transform: rotate3d(0, 1, 0, 0deg);
    }
}