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;
    width: auto;
}
.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*/
img {
    width: 100vw;
    height: auto;
    object-fit: cover;
}
.slogan {
    color: white;
    position: absolute;
    font-size: 5vw;
    top: 40vh;
    left: 14vw;
    z-index: 1;
}
h1 {
    color: white;
    text-align: center;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 40px;
    font-weight: normal;
    text-decoration: underline;
    text-decoration-color: red;
    text-underline-offset: 5px;
}
p {
    margin-top: 40px;
    margin-bottom: 60px;
    margin-left: 20vw;
    margin-right: 20vw;
    text-align: left;
    color: white;
    font-family: sans-serif;
}
h3 {
    text-align: center;
    color: white;
    font-family: sans-serif;
    text-decoration: underline;
    text-decoration-color: red;
    margin-bottom: 30px;
}
ol {
    list-style-type: disc;
    color: white;
    font-family: sans-serif;
    margin-bottom: 100px;
}
li {
    margin-left: 25vw;
    margin-right: 25vw;
}
.grid-review {
    display: grid;
    width: 80vw;
    margin-left: 10vw;
    margin-right: 10vw;
    justify-content: space-around;
    grid-template-areas: 
    "simon axel mattias"
    "erik bolle edwin"
    "ruben leo edvin";
}
.grid-review div {
    text-align: center;
    color: white;
    background-color: #202020;
    width: 12vw;
    height: fit-content;
    min-height: 100px;
    margin-top: 50px;
    margin-bottom: 40px;
    border-radius: 20px;
    padding: 10px;
}
.yellow-star {
    color: yellow;
    font-size: 20px;
}
@media only screen and (max-width: 800px) {
    .navbar div {
        font-size: 12px;
    }
    .logga {
        height: 60px;
        width: auto;
    }
    .footer {
        font-size: 15px;
    }
}
@media only screen and (max-width: 600px) {
    .grid-review {
        grid-template-areas: 
        "simon axel"
         "mattias erik"
         "bolle edwin"
         "ruben leo" 
    }
    .edvin {
        display: none;
    }
    .grid-review div {
        width: 25vw;
        font-size: 12px;
    }
    h1 {
        font-size: 20px;
    }
    p {
        font-size: 12px;
    }
    ol {
        font-size: 12px;
    }
    li {
        margin-left: 15vw;
        margin-right: 15vw;
    }
}