html,
body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-color: lightsteelblue;
    margin: auto;
    font-size: 16px;
    margin: auto;
    cursor: auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 95vh;
    cursor: pointer;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

#siteLink {
    color: white;
    text-decoration: none;
    font-size: 20px;
    padding: 5px;
    display: block;
    cursor: pointer;
}

#siteContent {
    background-image: linear-gradient(rgb(125, 125, 255), aliceblue);
    text-decoration: none;
    font-size: 14px;
    color: black;
    text-align: center;
    margin: auto;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid black;
    border-radius: 5px;
    padding: 5px;
}

#logo {
    display: block;
    background-color: whitesmoke;
    height: 25px;

}

.topnav {
    background-color: #333;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.topnav a {
    float: left;
    color: grey;
    text-align: center;
    padding: 14px;
    text-decoration: none;
    font-size: 14px;

}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Create a right-aligned (split) link inside the navigation bar */
.topnav a.split {
    float: right;
    background-color: darkblue;
    color: white;
}


/* Add a black background color to the top navigation */
.topnav {
    background-color: #333;
    overflow: hidden;
}


/* Add an active class to highlight the current page */
.active {
    background-color: #04AA6D;
    color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
}

/* Dropdown container - needed to position the dropdown content */
.dropdown {
    float: left;
    overflow: hidden;
}

/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
    font-size: 17px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Add a dark background on topnav links and the dropdown button on hover */
.topnav a:hover,
.dropdown:hover .dropbtn {
    background-color: #555;
    color: white;
}

/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
    color: black;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
    display: block;
}
