body {
    background: #020202;
    color: #e2e2e2;
    font-family: 'Times New Roman', Times, serif;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    min-width: 100vw;
}
.body-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 80%;
    height: 60%;
    margin: 0;
}
.text-wrapper {
    width: 100%;
    height: auto;

}
h1 {
    color: #f2f2f2;
}
span {
    font-size: 1.5rem;
    color: #e1e1e1;
}
p, a {
    color: #e2e2e2;
    transition: color 0.3s linear;
}
a:hover {
    color: #fff;
}
.map-wrapper {
    margin-top: 40px;
    width: 100%;
    height: 300px;
}
#gmap_canvas {
    height: 100%;
    width: 100%;
}
@media screen and (min-width: 1200px) {
    h1 {
        font-size: 2rem;
    }
    span {
        font-size: 1.75rem;
    }
    p, a {
        font-size: 1.5rem;
    }
    .body-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }   
    .map-wrapper, .text-wrapper {
        width: 45%;
    } 
    .map-wrapper {
        margin-top: 0;
        height: 500px;
    }
}