html {
    --secondary-color: #ffef96;
    --primary-color: #50394c;
    --color-three: #b2b2b2;
    --color-four: #333333;
}

body {
    margin: 0px;
}

header {
    display: flex;
    background-color: var(--primary-color);
    padding: 5px;
}

#header-title {
    display: flex;
    font-size: 20px;
    flex-wrap: nowrap;
    width: auto;

}
#header-title h1 {
    display: flex;
    text-align: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}
#header-title h1 a {
    text-decoration: none;
    color: black;
    text-shadow: 1px 1px 5px var(--color-three);
}

header img {
    width: 160px;
    height: 100px;
    margin-top: auto;
    margin-bottom: auto;
}

section {
    display: flex;
    align-items: center;
}

h1 {
    font-weight: bold;
}

h2 {
    font-weight: bold;
}

h3 {
    font-weight: bold;

}

/* section-image and bio */
.headshot-container img {
    display: flex;
    padding: 30px;
    width: 400px;
    border-radius: 40px;


}

.bio-container {
    padding: 30px;
    font-size: 25px;
    color: var(--color-four);


}

.bio-container h3 {
    font-size: 15px;
    color: var(--color-three);
}


/* footer-contact us section */

.triple-footer-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.contact-info p {
    color: var(--color-four);
    font-size: 35px;
}

.email-container {
    color: var(--color-four);
    font-size: 25px;
    width: 20%;
    text-align: center;
    box-shadow: 0 4px 48px 0 rgb(51 51 51 / 10%);
    padding: 10px 20px;
}

.email-request {
    display: flex;
    flex-direction: column;
    color: var(--color-four);
    margin: 5px;
}

#ask-a-question-submit {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 5px;
    padding: 5px;

}

.mapouter {
    padding: 30px;

}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
    height: 400px;
    width: 400px;
    border-radius: 20px;
    border: 2px solid black;
}

.footnotes {
    text-align: center;
    padding: 5px;
}


/* lostpage */
#lost-page-section {
    flex-direction: column;
}

@media screen and (max-width: 786px) {
    header {
        display: flex;
        background-color: var(--primary-color);
        padding: 15px;
        font-size: 15px;
        width: 100%;
    }

    header img {
        width: 80px;
        height: 50px;
    }

    section {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .headshot-container img {
        display: flex;
        padding: 30px;
        width: 250px;
        border-radius: 40px;
    }

    .bio-container {
        padding: 30px;
        font-size: 25px;
        color: var(--color-four);
        text-align: center;
    }

    .contact-info p {
        color: var(--color-four);
        font-size: 25px;
        text-align: center;
    }

    .email-container {
        color: var(--color-four);
        font-size: 25px;
        width: 80%;
    }

    .gmap_canvas {
        width: 250px;
        height: 250px;
        border-radius: 20px;

    }
}