@charset "utf-8";
/****************
Zach Severance
Date Created: 8/7/2020
File: find-us-stylesheet.css
*****************/

.location-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 50px;
}

.location-text a {
    width: auto;
    padding: 10px;
    text-decoration: none;
    color: white;
    font-size: 20px;
}

.location-text a h2 {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.location-map {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.location-map iframe {
    width: 300px;
    height: 500px;
}

.footer {
    box-shadow: 5px 0px 10px gray;
}

/*** Media Queries ***/
@media screen and (min-width: 450px) {
    .location-map iframe {
        width: 400px;
    }
}

@media screen and (min-width: 650px) {
    .location-map iframe {
        width: 600px;
    }
}