@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1+Code:wght@300&family=Staatliches&display=swap');

/* SELECTORES DE ETIQUETAS*/

body{
    background-image: url(../imagenes/fondo.jpg);
    font-family: 'Comfortaa', cursive;
}

.caja{ 
    margin: 0 auto;
    width: 600px;
    padding: 10px;
    background-color:rgba(231, 217, 198,0.7) ;
    border: 2px dotted rgb(218, 192, 171); 


}

.adaptable{  
    width: 100%;
    height: auto;
}

.adaptable2 {
    width: 50%;
    height: auto;
}

h1, h2{ 
    font-family: 'Open Sans Condensed', sans-serif;
 }

/* SELECTORES PERSONALIZADOS */

.menu{ 
display: inline-block;
padding: 10px;
list-style: none;
}

.vinculo{ 
    color: blueviolet;
    text-decoration: none;
    padding: 5px;
}


.vinculo:hover { 
    color: rgb(3, 112, 139);
    background-color: rgb(253, 190, 107);
    text-decoration: none;
}


