:root {
    --main-color: #196a4a;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
}

.header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.header .logo {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 5px;
    border-bottom: 10px solid var(--main-color);
}

.header .logo img {
    width: 10%;
}

.header .logo h2 {
    font-size: 3em;
    margin-top: 20px;
    margin-bottom: auto;
    font-family: 'Elephant';
}

.body {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.body .body-header {
    margin: 10px auto;
    font-size: 1.5em;
}

.body .map {
    width: 500px;
    height: 300px;
}

.footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
    color: white;
    /* position: absolute;
    bottom: 0; */
}

.footer .copyright {
    margin: 15px
}

.footer .businessname {
    font-size: 1.25em;
    margin: 15px;
}

.footer .businessname small {
    font-size: 75%;
}

.footer .where-info {
    margin: 15px
}

.footer .contact-info {
    margin: 15px;
}