
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@1,700&display=swap');

body{
    background-color: lightgray;
}
header{
    border: 1px solid rgb(41, 70, 233);
    text-align: center;
    background-color: rgb(198, 239, 255);
    font-size: xx-large;
    font-family: 'Roboto Mono', monospace;
    
}
img{
    width:10%;
}
/** MENU DE NAVEGACION **/
nav{
    background-color: black;
   
}
nav ul{
    list-style: none;
    margin:0;
    padding:0;
}

nav ul li{
    display:inline-block;
}
nav ul li a{
    color: white;
    text-decoration: none;
    display: block;
    padding: 20px 40px; 
}
nav ul li a:hover{
    background-color:rgb(116, 116, 116) ;
    color: black;
    font-weight: bold;
}
.inicio{
    float: right;
}

/** CONTENIDO **/
.principal {
    width: 100%;
    height: 100%;
}
.ubi{
    font-family: 'Kiwi Maru', serif;
    border: 1px solid black;
    background-color:  rgb(191, 223, 253);
    width: auto;
    float:left;
    height: 35em;
    margin: 2% ;
    padding: 1%;
    border-radius: 1em;
}
.ubi h1{
    text-align: center;
}
b{
    background: rgb(223,221,12);

}
/** MAPA **/
.mapa{
    font-family: 'Kiwi Maru', serif;
    border: 1px solid black;
    background-color: rgb(191, 223, 253);
    width: auto;
    float: right;
    height: 35%;
    margin: 2% ;
    padding: 1%;
    border-radius: 1em;
    text-align: center;
}

footer{
    background-color:black ;
    color: white;
    width: 100%;
    clear: both;
    text-align: center;
    height: 7em;
    font-size: x-large;
}
footer::first-letter{
    color: crimson;
}
