* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body{
    overflow-x: hidden;
}

h1, a{
    font-family: "Rubik", sans-serif;
}

p{
    font-family: "Open Sans", sans-serif;
}

a{
    cursor: pointer;
}

.Lista{
    align-content: flex-start;
}
picture{
    display: flex;
    width: 100%;
    justify-content: center;
}
img{
    border-radius: 10px;
}

.boxLight{
    border-radius: 10px;
    border-color: rgba(0, 0, 0, 0.2) ;
    border-style: solid;
    margin-bottom: 20px;
}

.boxDark{
    border-radius: 10px;
    border-color: rgba(255, 255, 255, 0.4) ;
    border-style: solid;
    margin-bottom: 20px;
}
.bodyLight{
    background-color: white;
    background-image: linear-gradient(to bottom right,#71ade2, white,#71ade2);
    color: black;
}

.bodyDark{
    background-color: black;
    background-image: linear-gradient(to bottom right,#0a5494, black, #0a5494);
    color: white;
}

.headerLight{
    background-color: #167dd8;
    color: white;
}

.white{
    color: black;
}
.dark{
    color: white;
}
.headerDark{
    background-color: #0a2d4d;
    color: white;
}

.navDark{
    background-color: #0a2d4d;
}

.navLight{
    background-color: #167dd8;
}

.footerLight{
    background-color: #167dd8;
}

.footerDark{
    background-color: #0a2d4d;
}

#knapp{
    fill: white;
}


hr{
    background: black;
    height: 2px;
}

footer{
    background-color: #167dd8;
    padding: 1vh;
    color: white;
}

#navHidden{
    height: 0;
    display: flex;
    flex-direction: row;
    margin-left: -200px;
}


.bodyDark, .headerDark, .navDark, .bodyLight, .headerLight, .navLight, .footerLight, .footerDark{
    transition: 0.3s;
}
@media only screen and (min-width: 600px) {

    h1{
        font-size: 200%;
    }
    #navHidden{
        height: 40px;
        width: 100%;
        margin: 0;
    }
    ul{
        flex-wrap: wrap;
        align-content: space-around;
        width: 100%;
    }
    li{
        display: inline-block;
    }
    #burgare {
        position: absolute;
        top: -100px;
    }

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

    #navHidden{
        position: absolute;
        top: 30px;
        right: 0;
        width: 60%;
    }

}