@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 400;
  src: local('Merriweather Regular'),
       local('Merriweather-Regular'),
       url(../../fonts/Merriweather-Regular.woff) format('woff');
}
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 700;
  src: local('Merriweather Bold'),
       local('Merriweather-Bold'),
       url(../../fonts/Merriweather-Bold.woff) format('woff');
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather';
    font-size: 1em;
    color: #333333;
    background-color: #f2f280;
    background-image: url(img/bg.jpg);

    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 960px) {
    body {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

h1 {
    text-align: center;
    font-weight: bold;
    font-size: 3em;
    color: #304f00;
    background-image: url(img/quer.960.jpg);
    background-position: center;
    border-radius: 0.15em;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    padding-left: 0.5em;
    padding-right: 0.5em;
    color: white;
}
h2 {
    color: #304f00;
    margin-top: 2em;
    margin-bottom: 0.5em;
}

#map {
    height: 50ex;
    max-height: 90vh;
    margin-bottom: 1rem;
}

div.images {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 10px;
    row-gap: 10px;
}
.images a {
    display: flex;/*remove space after img*/
}
.images img {
    border: 1px solid #304f00;
    border-radius: 3px;
    width: 300px;
    max-width: 100%;
    height: auto;
}
