body {
    padding: 0;
    border: 0;
    margin: 0;
    overflow-x: hidden;
    background-color: #3c3c3c;
}
.navbar {
    display: flex;
    width: 100vw;
    height: 90px;
    border-bottom: 1px solid black;
    justify-content: space-around;
    align-items: center;
    background-color: #202020;
    position: sticky;
    top: 0;
    z-index: 2;
}
.navbar div {
    font-size: 22px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: white;
    height: 100%;
    width: 100%;
}
.navbar div a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: white;
    text-decoration: none;
}
.navbar div a:hover {
    user-select: none;
    text-decoration: underline;
    text-decoration-color: red;
}
.logga {
    height: 90px;
}
.current-page {
    text-decoration: underline;
    text-decoration-color: red;
}
.footer {
    text-align: center;
    color: white;
    font-family: sans-serif;
    margin-top: 80px;
    margin-bottom: 60px;
}
hr {
    border: 1px solid red;
    margin-left: 15vw;
    margin-right: 15vw;
}
/*Allt ovan är CSS kod för den navbar som ska vara på alla sidor och footern på alla sidor*/
h1 {
    color: white;
    font-family: sans-serif;
    text-decoration: underline;
    text-decoration-color: red;
    text-underline-offset: 5px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
h2 {
    margin-left: 15vw;
    color: white;
    font-family: sans-serif;
    text-decoration: underline;
    text-decoration-color: red;
    text-underline-offset: 5px;
}
p {
    color: white;
    font-family: sans-serif;
    margin-left: 15vw;
    margin-right: 15vw;
    margin-bottom: 50px;
}
@media only screen and (max-width: 800px) {
    .navbar div {
        font-size: 12px;
    }
    .logga {
        height: 60px;
        width: auto;
    }
    .footer {
        font-size: 15px;
    }
    h1 {
        font-size: 22px;
    }
    h2 {
        font-size: 15px
    }
    p {
        font-size: 10px;
    }
}