/* Color List:
#f3fafb - Off-white
#35b0aa - Teal
#308da0 - Darker teal
*/

h2 {
    margin-bottom: 10px;
}

/* About Me */
#aboutMeContainer {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    width: 80%;
    margin: auto;
    align-items: center;
}
p {
    font-size: 20px;
    line-height: 1.25;
}

/* My Mission */
#MissionContainer {
    width: 50%;
    margin: auto;
}

/* Find Me Container */
#FindMeContainer {
    display: grid;
    grid-template: 1fr 1fr / 1fr 1fr;
    gap: 20px;
    width: 80%;
    margin: auto;
}
#FindMeContainer iframe {
    grid-area:1 / 1 / 3 / 2;
    width: 100%;
    height: 100%;
}
#findMeContacts {
    grid-area: 2 / 2 / 3 / 3;
    display: flex;
    justify-content: center;
    flex-flow: wrap;
}
#findMeContacts p a {
    text-decoration: underline;
    color: slateblue;
}
#findMeContacts p {
    margin-top: 10px;
}
#findMeContacts > a{
    background-color: white;
    box-shadow: 0px 0px 15px rgb(179, 179, 179);
    border-radius: 10px;
    margin: 0 10px;
}
#findMeContacts > a:hover{
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 10px rgb(151, 151, 151);
    border-radius: 10px;
    margin: 0 10px;
}
#findMeContacts p {
    text-align: center;
    font-size: 14px;
}
#findMeContacts img {
    height: 100px;
    width: 100px;
    margin: 0 10px;
}