/*-----------------------------
-------------MAIN--------------
-----------------------------*/
body {
    margin: 0;
}

h1 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 2em;
    margin: 0;
    padding-top: 8px;
}

header p {
    margin: 0;
    padding-bottom: 5px;
}

a {
    text-decoration: none;
    color: red;
}

h2, h4 {
    text-align: center;
    margin-bottom: 0;
}

#dna {
    color: darkred;
}

/*------LIST ITEMS------*/
ul {
    margin-left: 5px;
}

li {
    list-style-type: square;
    font-size: 30px;
}

.key-font {
    font-size: 15px;
    color: white;
}

#germany {
    color: hsla(52, 100%, 31%, .5);
}

#uk {
    color: hsla(177, 100%, 26%, .5);
}

#ireland {
    color: hsla(105, 100%, 27%, .5);
}

/* #norway {
    color: hsla(311, 100%, 27%, .5);
} */

#sweden {
    color: hsla(239, 100%, 49%, 0.5);
}

/*------History------*/
.country-data {
    margin: 0 5px;
    padding: 0 5px;
    line-height: 1.5em;
}

#germany-region,
#ireland-region,
#norway-region,
#sweden-region,
#uk-region,
#history-h2 {
    display: none;
}

/*-----------------------------
---------GRID ELEMENTS---------
-----------------------------*/
/* #grid-container {
    display: grid;
    grid-template-areas: "header key"
                         "map key"
                         "map history"
                         "map footer";
    grid-template-columns: 75% 25%;
    grid-template-rows: 75px 175px 650px 100px;
    background-color: rgba(255, 255, 255);
} */

aside {
    width: 25%;
    min-width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    overflow-y:scroll;
}

#key {
    border-bottom: 2px solid white;
}

#history {
    border-bottom: 2px solid white;
    padding: 0 2%;
}

#map {
    width: 100%;
    height: 100vh;
}

footer {
    text-align: center;
    padding: 0 2%;
}

header {
    width: 75%;
    text-align: center;
    position: fixed;
    top: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
}