body {
    background-color: #ffffff;
}
h1 {
    font-family: 'Roboto', sans-serif;
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    cursor: pointer;
}
.logo {
    position: absolute;
    top: 3%;
    right: 3%;
    width: 12%;
}
.banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    background-color: blue;
    text-align: center;
    line-height: 50px;
    font-size: 35px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: yellow;
    font-style: italic;
}
.textbox {
    display: none;
    position: fixed;
    top: 37.5%;
    left: 12.5%;
    width: 75%;
    height: 25%;
    background-color: rgba(64, 64, 255, 0.85);
    z-index: 1000;
    border: 2px solid black;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    color: yellow;
    font-size: 24px;
    padding: 20px;
    box-sizing: border-box;
}
.datebox {
    display: none;
    position: fixed;
    top: 37.5%;
    left: 25%;
    width: 50%;
    height: 25%;
    background-color: rgba(64, 64, 255, 0.85);
    z-index: 1000;
    border: 2px solid black;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    color: yellow;
    font-size: 24px;
    padding: 20px;
    box-sizing: border-box;
}
.map-overlay {
    display: none;
    position: absolute;
    top: 20%;
    right: 10%;
    width: 90%;
    height: 75%;
}
#map {
    width: 100%;
    height: 100%;
}

@media (max-width: 1200px) {
    .textbox {
        font-size: 20px;
    }
}
@media (max-width: 900px) {
    .textbox {
        font-size: 16px;
    }
}
@media (max-width: 600px) {
    .textbox {
        font-size: 16px;
    }
}
@media (max-height: 480px) {
    .textbox {
        font-size: 14px;
    }
}
