* {
    box-sizing: border-box;
    margin: .3em;
    padding: 0;
}

.presentacion {
    background-color: rgba(255, 255, 255, 0.349);
    margin: .6em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

ul li {
    text-align: left;
    width: 100%;
    margin: auto;
    list-style: none;
}

h1, h2, h3{
    color: crimson;
    font-family: 'montserrat', sans-serif;
    font-style: bold;
    
}

p {
    color: rgb(0, 0, 0);
    font-family: 'montserrat', sans-serif;
}

header {
    background-color: crimson;
    padding: .2em;

}

header #logo {
    margin: .5em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body{
    background-color: lightskyblue;
}

a {
    color:rgb(0, 0, 0);
    text-decoration: none;
    font-family: 'montserrat', sans-serif;
}

footer {
    background-color: crimson;
    padding: 1em;
}

.mapa {
    display: block;
    align-content: center;
    justify-content: center;
}

#mapa {
    height: 100vh;  
  }
  
  .mapa img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
  }