/*--------- COLORES ---------*/
:root { --green: #4C7F38; }

/*---------- BASE -----------*/
body { font-family: 'Quattrocento'; }
img { max-width: 100%; }
.container {
    margin-top: 80px;
    padding: 15px;
}
.black-back {
    background: black;
    opacity: 80%;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 90;
}
.background{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-image: url(../img/leavesPattern.png);
    background-size: 100%;
    background-position-x: center;
    background-position-y: bottom;
    background-repeat: no-repeat;
    z-index: -1;
}

/*--------- ICONOS ----------*/
.ico-home, .ico-carta { font-size: 50px; }
.ico-subhome {
    font-size: 26px;
    margin-right: 15px;
}
.ico-alergic {
    font-size: 30px;
    margin: 0 8px;
}

/*------- INTERACCIÓN -------*/
.a-hover:hover { color: white;}
.rotateR {
    position: absolute;
    transform: rotate(45deg);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.rotateL {
    position: absolute;
    transform: rotate(-45deg);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}