* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
    letter-spacing: 0.03em;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

.topnav {
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.topnav a {
    float: left;
    display: block;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    color: #555555;
}

.topnav a.active {
    background-color: green;
    color: white;
}

.topnav a:not(:first-child) {
    display: none;
} 

.topnav a.icon {
    float: right;
    display: block;
}

.topnav.responsive {
    position: relative;
}

.topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
}

.topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
}

@media only screen and (min-width: 1024px) {
    .topnav {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 9vh;
    }

    .topnav a {
        display: block;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 16px;
        color: #555555;
    }

    .topnav a.active {
        color: white;
    }

    .topnav a:not(:first-child) {
        display: inline-block;
    } 

    .topnav a.icon {
        display: none;
    }

    .topnav a:nth-child(6) {
        color: white;
        background-color: #2f9294fe;
        border: none;
        text-decoration: none;
        text-align: center;
        display: inline-block;
        cursor: pointer;
        border-radius: 5px;
        padding: 14px;
        font-weight: 600;
    }
}

.topnav-logo {
    width: 30px;
    display: inline-block;
    position: relative;
}

@media only screen and (min-width: 1024px) {
    .topnav-logo {
        width: 40px; 
    }
}

h1 {
    padding-left: 5%;
    padding-right: 5%;
    font-weight: 200;
    font-size: 35px;;
    color: #555555;
    text-align: center;
    letter-spacing: 0.05em;
}

.content {
    padding-left: 5%;
    padding-right: 5%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: #555555;
    overflow: hidden;
}

@media only screen and (min-width: 768px) {
    .content {
        padding-left: 20%;
        padding-right: 20%; 
    }
}

@media only screen and (min-width: 1024px) {
    .content {
        padding-left: 25%;
        padding-right: 25%; 
    }
}

.column {
    padding: 10px;
    height: 100%;
    width: 100%;
}

.card {
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #555555;
    text-align: center;
    height: 100%;
    width: 100%;
    word-wrap: break-word;
    overflow: hidden;
}

.card p {
    display: inline-block;
    font-weight: 200;
    font-size: 16px;
}

.img {
    height: 130px;
    width: 130px;
    border-radius: 50%;
}

.contact-info {
    padding-left: 5%;
    padding-right: 5%;
    background-color: #f2f2f2;
    margin-top: 30px;
    color: #555555;
    font-size: 16px;
    font-weight: 200;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: inline-block;
}

.contact-info p:nth-of-type(1) {
    font-size: 18px;
    font-weight: 300;
}

.contact-info a {
    text-decoration: none;
}

.facebook-logo {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.google-map {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

@media only screen and (min-width: 768px) {
    .google-map {
        height: 40vh;
    }
}

@media only screen and (min-width: 1024px) {
    .google-map {
        height: 50vh;
    }
}

iframe {
    border: 0; 
    width: 100%; 
    height: 100%;
}

.footer {
    padding: 10px;
    text-align: center;
    font-size: small;
}

.footer a {
    text-decoration: none;
}