* {
    margin: 0;
    padding: 0;
}

section {
    text-align: center;
    display: inline;
}

#mainContentContainer {
    position: relative;
    margin: 0;
    padding: 0;
}

#indexBackgroundPicture {
    object-fit: cover;
    height: 240px;
}

#mainContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: bold;
    color: rgb(0, 82, 125);
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#map {
    width: 85%;
    height: 300px;
    margin: 20px 7.5% 0 7.5%;
    border-radius: 10px;    
    box-shadow: 2px 2px 3px black;
    color: black;
}

button.gm-ui-hover-effect {
    display: none;
    visibility: hidden;
}

#infoWindow {
    color: black;
}

.hidden {
    display: none;
}

.dropbtn {
    background-color: black;
    color: white;
    padding: 8px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin: 10px 0 5px 0;
}
 
.dropbtn:hover, .dropbtn:focus {
    background-color: #a3a2a2;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropContainer {
    max-height: 200px;
    width: 250px;
    overflow-y: scroll;
    margin: 0;
    padding: 0;
}

.dropContainer::-webkit-scrollbar-track {
    border: 1px solid black;
    padding: 2px 0;
    background-color: white;    
    border-radius: 3px;
}

.dropContainer::-webkit-scrollbar {
    width: 10px;
}

.dropContainer::-webkit-scrollbar-thumb {
    border-radius: 3px;
    box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: rgb(133, 133, 136);
    border: 1px solid black;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
}

.dropdown-content p {
    color: black;
    padding: 4px 6px;
    text-decoration: none;
    display: block;
    margin: 0;
}

.dropdown-content p:hover {
    background-color: #a3a2a2;
    border-radius: 5px;
}

.state {
    font-weight: bold;
    background-color: white;
}

.show {display:block;}

@media screen and (min-width: 380px) {
    #mainContent {
        font-size: 25px;
    }

    #indexBackgroundPicture {
        height: 270px;
    }
}

@media screen and (min-width: 440px) {
    #mainContent {
        font-size: 30px;
    }

    #indexBackgroundPicture {
        height: 315px;
    }
}

@media screen and (min-width: 500px) {
    #mainContent {
        font-size: 35px;
    }

    #indexBackgroundPicture {
        height: 360px;
    }
}

@media screen and (min-width: 600px) {
    #mainContent {
        font-size: 40px;
    }
    
    #indexBackgroundPicture {
        height: 430px;
    }
}

@media screen and (min-width: 700px) {
    #mainContent {
        font-size: 45px;
    }
    
    #indexBackgroundPicture {
        height: 510px;
    }
}

@media screen and (min-width: 800px) {
    #mainContent {
        font-size: 50px;
    }

    #map {
        width: 600px;
        height: 500px;
    }

    #indexBackgroundPicture {
        height: 560px;
    }
}

@media screen and (min-width: 900px) {
    #indexBackgroundPicture {
        height: 630px;
    }
}

@media screen and (min-width: 1000px) {
    #indexBackgroundPicture {
        height: 700px;
    }
}

@media screen and (min-width: 1100px) {
    #mainContent {
        font-size: 60px;
    }

    #indexBackgroundPicture {
        height: 740px;
    }
}


