.mainContent {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: auto;
    width: 80%;
    padding-top: 3%;
    padding-bottom: 3%;
    background-color: #ffffff;
}

#topMain {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 75px;
    max-width: 100%;
}

#map{
    height: 60vh;
    width: 65vw;
    border: 3px solid #0030AC;
    border-radius: 5px;
}

#bottomMain{
    margin-top: 20px;
    padding: 10px 0px;
    background-color: #dddddddd;
    border-radius: 10px;
    text-align: center;
}

#bottomMain h2{
    font-weight: normal;
    padding: 0px 10vw;
}

@media (max-width: 1100px) {
    #topMain{
        padding: 0px 20px;
    }
    #map{
        width: 80vw;
    }
}

@media (max-width: 750px) {
    .mainContent {
        width: 100vw;
    }
    #map{
        width: 90vw;
    }
    #bottomMain{
        border-radius: 0px;
    }
}