body {
    height: 100%;
    margin: 0;
    padding: 0;

    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

section {
    width: 70%;
    @media (width <= 1200px) {
        width: 90%;
    }

    margin: 0 auto;
}

#logo-header {
    display: flex;
    justify-content: center;

    font-family: 'Mongolian Baiti';

    img {
        margin: 0 0 0 auto;
    }
}

#header-text {
    display: flex;
    flex-direction: column;
    margin: 2.0rem auto 0 0;

    @media (width <= 1200px) {
    }
    text-align: center;

    h1, h2, h3 {
        margin: 0;
    }

    h1 {
        font-variant: small-caps;
        font-size: 6.0rem;
        letter-spacing: 0.15rem;
        font-weight: 550;
    }

    h2 {
        text-transform: uppercase;
        margin-top: 1rem;
        font-weight: 540;
        font-size: 2.0rem;
    }


    a.phone {
        font-size: 3.5rem;
        color: black;
        text-decoration: none;
        font-weight: bold;
        letter-spacing: 0.15rem;
    }

    a.email {
        font-size: 2.2rem;
        color: black;
        text-decoration: none;
        font-weight: bold;
    }
}

#address {
    margin-top: 3rem;
    border: black solid 7px;
    padding: .5rem;

    font-size: 2.0rem;
    background-color: #f8f8ee;

    align-self: flex-end;
}

#map-section {
    margin: 0 auto 5rem;

    h2 {
        font-variant: small-caps;
        font-size: 3.0rem;
        font-weight: 550;

        text-align: center;
    }

    #map {
        display: block;
        border: 0;
        margin: 0 auto;
        width: 900px;
        height: 500px;
    }
}

#price-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;

    margin-top: 1rem;
    margin-bottom: 2rem;
}

.star {
    display: inline;
    width: 15px;

    vertical-align: text-top;
}

.price-card {
    border: 4px solid #000;
    border-radius: 1rem;

    width: 20rem;
    padding: 0.5rem;

    margin-top: 1rem;
    margin-right: 1rem;

    box-shadow: 10px 10px 10px #eaeaea;
}


