* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: rgb(235, 235, 235);
    font-family: Arial, Helvetica, sans-serif;
}
.navbar {
    background: #333;
}
.navbar ul {
    overflow: hidden;
}
.navbar li {
    float: left;
    text-align: center;
    display: block;
    padding: 14px 20px;
    color: rgb(231, 231, 231);
    cursor: pointer;
}
.navbar li:hover {
    background: rgb(37, 86, 133);
    transition: ease all 0.5s;
}
.navbar .active {
    font-weight: bold;
    background: rgb(58, 87, 114);
}
header h1 {
    color: rgb(15, 147, 187);
    font-weight: 700;
}
header .synop {
    font-size: 16px;
    line-height: 1.6;
    color: rgb(51, 47, 47);
}
header {
    margin: 2vw 0;
}
/* Set the size of the div element that contains the map */
#map {
    height: 500px;  /* The height is 500 pixels */
    width: 100%;
}
hr {
    border: 1.5px solid #2391da;
}
.hide {
    display: none;
}
.show {
    display: block;
}

#guidelines p {
    font-size: 16px;
    line-height: 1.6;
    color: rgb(51, 47, 47);
}