/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    cursor: pointer;
    color: #774212 !important;
    text-decoration: none !important;
}

@font-face {
    font-family: 'papa-oros-font';
    src: url('fonts/Quiapo_Free.otf') format('opentype');
}

@font-face {
    font-family: 'roboto-l';
    src: url('fonts/RobotoCondensed-Light.ttf') format('truetype');
}

img {
    max-width: 100%;
}

body {
    color: #774212;
    background-color: whitesmoke;
}

small {
    font-size: 75%;
}

button {
    font-family: 'roboto-l';
    text-transform: uppercase;
    font-weight: 700;
    color: #f5f5f5;
    background: #774212;
    font-size: 1.125rem;
    letter-spacing: 1px;
    padding: 1rem;
    margin: .5rem 0 2.5rem;
    border-radius: 5px;
}

.grid-container {
    display: grid;
    /* grid-template-rows: 100px 100px; */
    grid-template-columns: 1fr;
    grid-gap: 5px;
    text-align: center;
    font-family: 'papa-oros-font';
}

h1 {
    font-family: 'papa-oros-font', sans-serif;
    margin: 0;
    text-align: center;
    line-height: .5;
    padding: 1rem 0 4rem;
    font-weight: 400;
    font-size: 2.54rem;
}

h1 small {
    font-size: 1.0625rem;
}

h2 {
    font-family: 'roboto-l';
    font-size: 2.5rem;
    padding: 0 0 1rem;
}

#logo-wrap {
    text-align: center;
    padding: .5rem 0 0;
}

#logo {
    padding: .5rem 0 0;
}

.letter-spacing {
    letter-spacing: -2px;
}

.maps {
    width: 300px;
    height: auto;
}

@media (min-width: 1200px) {
    .grid-container {
        grid-template-columns: 400px 400px 400px;
        justify-content: center;
        /* gap: 4rem; */
    }

    .grid-item3 {
        justify-self: center;
    }

    h1 {
        font-size: 3rem;
    }

    h1 small {
        font-size: 1.23rem;
    }

    #logo {
        max-width: 120px;
        max-height: 120px;
    }
}