

:root{
    --robot:"Roboto", sans-serif;
    --monse:"Monserrat", sans-serif;
    --gris:grey;
    --agua:aquamarine;
    --orange:orange;
    --gris:rgb(97, 96, 96);
}
.rojo{
    color: red;
    background-color: orange;
}

.claro{
    font-weight: 300;
}
.oscuro{
    font-weight: 900;
    background-color: yellow;
}

span{
    color: rgb(255, 0, 0);
    font-size: 1.1rem;
}
 #contenedor-principal{
    position:relative;
    top: 5rem;
    left: -0.4rem;
    width: 100vw;
    height: 96vh;
    display: flex;
    align-items: center;
    justify-content: center;
    
    
    
}

.main{
    width: 100%;
}


main .contenedor_main{
    width: 98vw;
    height: auto;
    position: absolute;
    top: 1rem;
    left: 0;
   background-color: rgba(255, 255, 255, 0.33);
    
}


.contenedor_main .pagina h2{
    font-size: 2.4rem;
    text-align: center;
}
.contenedor_main .cuerpo nav.main{
    background-color: white;
    padding: 0.2rem 0rem;
}
.contenedor_main .cuerpo nav.main ul{
    display: flex;
    justify-content: space-around;
}
.contenedor_main .cuerpo nav.main ul li {
    color: var(--orange);
}
.contenedor_main .cuerpo nav.main ul li a{
    text-decoration: none;
    transition: all .3s linear .2s;
    -webkit-transition: all .3s linear .2s;
    -moz-transition: all .3s linear .2s;
    -ms-transition: all .3s linear .2s;
    -o-transition: all .3s linear .2s;
    border-bottom: 2px solid transparent;
}
.contenedor_main .cuerpo nav.main li a:hover{
    color:rgb(97, 96, 96);
    border-bottom: 2px solid var(--orange);
}