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;
    font-size: 40px;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: red;
    margin-bottom: 50px;
}
.flex-jamfor {
    color: white;
    display: flex;
    width: 100vw;
    height: 640px;
    justify-content: space-around;
    margin-top: 50px;
}
.alternatives {
    background-color: #202020;
    font-family: sans-serif;
    font-size: 2vw;
    border: 2px solid black;
    border-radius: 8px;
    width: 20vw;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.alternatives:hover {
    cursor: pointer;
}
.dropdown {
    display: none;
    background-color: #3c3c3c;
    width: 20vw;
    padding-top: 2px;
    padding-bottom: 2px;
    border-radius: 0px 0px 10px 10px;
    border: 2px solid black;
    border-top: none;
    font-family: sans-serif;
    position: absolute;
    top: 251px;
    z-index: 2;
    cursor: pointer;
}
ul {
    padding-inline-start: 10px;
}
.dropdown li {
    list-style-type: none;
    margin-top: 5px;
}
.dropdown li:hover {
    background-color: #202020;
}
.showcase {
    width: 30vw;
    height: 450px;
    background-color: #202020;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
    font-family: sans-serif;
}
.showcase div {
    display: none;
}
.shown {
    display: block !important;
}
.showcase img {
    width: 90%;
    height: 300px;
    border-radius: 12px;
    margin-top: 15px;
    object-fit: cover;
}
.showcase li {
    list-style-type: none;
    text-align: left;
    padding-top: 5px;
    padding-bottom: 5px;
}
@media only screen and (max-width: 800px) {
    .navbar div {
        font-size: 12px;
    }
    .logga {
        height: 60px;
        width: auto;
    }
    .footer {
        font-size: 15px;
    }
    .showcase li {
        font-size: 12px;
    }
    .dropdown {
        font-size: 13px;
    }
}
@media only screen and (max-width: 600px) {
    .alternatives {
        width: 25vw;
    }
    .showcase {
        width: 35vw;
    }
    .dropdown {
        font-size: 10px;
    }
}