body, html {
    height: 100%;
    font-size:100%;
    background-color: rgb(0, 0, 0);
    overflow-y: hidden;
    overflow-x: hidden;
}
* {
    box-sizing: border-box;
}
.bgImage{
    background-image: url("../img/3.jpg");
    filter: blur(8px);
    -webkit-filter: blur(8px);
    height : 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}
.bgText{
    background-color: rgb(0, 0, 0);
    background-color: rgb(0, 0, 0, 0.4);
    color: white;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 60%;
    padding: 20px;
    text-align: center;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
li {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    color: white;
}
li:hover {
    background-color: #555;
    color: white;
}
a:link {
    text-decoration: none;
    color: white;
}
a:visited {
    text-decoration: none;
    color: white;
}
#nav{
    top: 5%;
    z-index: 2;
    padding: 20px;
    text-align: center;
    position: absolute;
    width: 99%;
    background-color: rgb(0, 0, 0, 0.4);
    padding: 0px 0px;
    color: white;
}
#grey{
    background-color: rgb(20, 42, 56);
}
.map{
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 70%;
    max-height: 70%;
}
.area{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 70%;
    max-height: 70%;
}
#legend{
    text-align: center;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.pics{
    width: 20%;
    position: absolute;
    left: 50%;
}

/* Media Queries: Tablet Landscape */
@media screen and (max-width: 1060px) {
    #primary { width:67%; }
    #secondary { width:30%; margin-left:3%;}  
}

/* Media Queries: Tabled Portrait */
@media screen and (max-width: 768px) {
    #primary { width:100%; }
    #secondary { width:100%; margin:0; border:none; }
}

@media (min-width: 640px) { body {font-size:1rem;} } 
@media (min-width:960px) { body {font-size:1.2rem;} } 
@media (min-width:1100px) { body {font-size:1.5rem;} } 