#strukturIndex {
    background-color: #0c2649;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#informasjon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: top;
    background-color: #0a2952;
    border: 1px solid #0a2952;
    border-radius: 5px;
    height: 80vh;
    width: 40vw;
    margin: 50px;
}

#knapperfelt{
    background-color: #0a2952;
    border: 1px solid #0a2952;
    border-radius: 5px;
    height: 80vh;
    width: 40vw;
    margin: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: top;
}

.tittel {
    font-size: 4vw;
    border-bottom: 2px solid #BBD3F2;
    color: #ffffff;
}

#tekst {
    font-size: 2vw;
    margin: 20px;
    color: #ffffff;
}

.knapper {
    font-size: larger;
    height: 15vh;
    width: 30vw;
    margin: 5px;
    border: 3px solid #BBD3F2;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 200ms;
    text-decoration: none;
    background-color: #092640;
}


#headerindex {
    display: flex;
    flex-direction: row;
    background-color: #092344;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: sticky;
    top: 0;
    height: 70px;
    border: 1px solid #092344;  
}

.headerbarn {
    margin: auto;
}

@media only screen and (max-width: 1200px) {
    #strukturIndex {
        flex-direction: column;
    }

    #informasjon {
        width: 80vw;
        height: 40vh;
    }

    #knapperfelt {
        width: 80vw;
        height: 40vh;
    }

    #tekst {
        font-size: 1em;
    }

    .knapper {
        width: 70vw;
    }
}