*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arimo', sans-serif;
}

header{
    border-bottom: 2px solid;
    height: 11vh;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "titel titel titel titel"
                        "navBar navBar navBar navBar";
    background-color: #aecda4;
}

h1{
    font-size: 22px;
    grid-area: titel;
    color: #3e5e20;
}

.dropDown{
    grid-area: dropDown;
    display: inline-block;
    padding-top: 2vh;
    border-left: 2px solid;
    background-color: #aecda4;
}

span{
    color: #3e5e20;
}

.dropDownContent{
    margin-top: 2vh;
    display: none;
    position: absolute;
    z-index: 1;
    list-style-type: none;
    background-color: white;
    width: 50%;
    border-left: 2px solid;
    border-bottom: 2px solid;
    height: 60px;
}

.dropDown:hover .dropDownContent{
    display: block;
}

.dropDownItem{
    border-top: 2px solid;
}

.dropDownItem:hover{
    background-color: dodgerblue;
}

a:link{
    text-decoration: none;
    color: black;
}

a:visited{
    color: black;
}

.navBar{
    display: contents;
}

li{
    display: inline-block;
    width: 30%;
    text-align: center;
}

nav{
    grid-area: navBar;
    margin-top: 1.5vh;
}

.gridContainer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "text text"
                        "bild bild";
    height: 93%;
    background-color: #558f3b;
}

.text{
    grid-area: text;
    padding-top: 3vh;
}

h2{
    font-size: 17px;
    color: #fffefc;
}

h3{
    font-size: 15px;
    color: #fffefc;
}

p{
    font-size: 13px;
    color: #fffefc;
}

.bild{
    grid-area: bild;
}

img{
    margin-left: 7.5vw;
    height: 85%;
    width: 85%;
}

.bildSpelClass{
    display: none;
}

footer{
    border-top: 2px solid;
    background-color: #5f835d;
}

@media only screen and (min-width: 600px) {
    .gridContainer{
        height: 93vh;
        grid-template-areas: "text bild"
                            "text bild";
    }

    .bild{
        width: 350px;
        height: 350px;
    }

    .text{
        margin-top: 10%;
        margin-left: 10%;
    }

    .bild{
        margin-top: 10%;
        margin-right: 10%;
    }

}

@media only screen and (min-width: 769px){

    header{
        height: 12vh;
        grid-template-areas: "titel titel titel titel"
        "navBar navBar navBar navBar";
    }

    h1{
       text-align: center;
       font-size: xx-large;
    }

    a:link{
        color: #3e5e20;
    }

    a:visited{
        color: #3e5e20;
    }

    .dropDown{
        display: none;
    }

    li{
        width: 32.5%;
    }

    h2{
        font-size: larger;
    }

    h3{
        font-size: large;
    }

    .stillBild{
        display: none;
    }

    .stillBild1{
        height: 400px;
        width: 400px;
    }

    .bildSpelClass{
        display: block;
        height: 400px;
        width: 400px;
    }

    p{
        font-size: medium;
    }
}