/* Cover section */
.cover {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.cover-container {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0.2)), url("../assets/cover/km-cover-left-adjusted-2.jpg");
    background-size: cover;
    background-position: 10%;
    /* background-attachment: fixed; */
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transform: scale(1.05);
}
.cover-zoom {
    animation: coverZoom 1.5s ease-in-out forwards;
}
@keyframes coverZoom {
    to {transform: scale(1);}
}

.cover-content-wrapper {
    margin-right: 20%;
    text-align: center;
    opacity: 0;
    animation: coverContentFadeIn 1.5s 1.5s ease-out forwards;
}
@keyframes coverContentFadeIn {
    
    to {opacity: 1;}
} 
.cover-h1 {
    font-size: 2.5rem;
}
.logo-cover {
    width: 225px;
}
.cover-h2-upper {
    font-size: 2rem;
}
.cover-h2-lower {
    font-size: 2.5rem;
}

/* Keyframes */



/* Responsive */
@media only screen and (min-width: 1120px) {
    .cover-container {
        background-image: linear-gradient(rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0.2)), url("../assets/cover/km-cover-2.jpg");
        background-size: 100%;
        background-position: 10%;
        background-attachment: fixed;
    }
    .cover-content-wrapper {
        margin-right: 20%;
    }
    .cover-h1 {
        font-size: 3rem;
    }
    .logo-cover {
        width: 300px;
    }
    .cover-h2-upper {
        font-size: 2rem;
    }
    .cover-h2-lower {
        font-size: 3rem;
    }
}














.midlertidig-link {
    height: 100px;
    width: 100px;
    background-color: blue;
    position: absolute;
    z-index: 20;
    top: 20%;
}
.midlertidig-p {
    margin-top: 15px;
    text-align: center;
    color: white;
    font-weight: 600;
}