/* KODE FOR ANIMASJON AV FORSIDETEKST */
/* SKREVET AV SINDRE SAGDALEN */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
}

.welcomeText{
    height: 100%;
    margin: auto;
    background-image: url("../bilder/election1_blackwhite.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    width: 100%;
}

#logoText{
    position: absolute;
    text-align: center;
    margin: 10px auto;
    animation: fill 0.5s ease forwards 4.8s;
    width: 100%;
    display: block;
}

#logoText path:nth-child(1){
    stroke-dasharray: 223.9208984375;
    stroke-dashoffset: 223.9208984375;
    animation: line-anim 2s ease forwards;
}

#logoText path:nth-child(2){
    stroke-dasharray: 261.1644592285156;
    stroke-dashoffset: 261.1644592285156;
    animation: line-anim 2s ease forwards 0.3s;
}

#logoText path:nth-child(3){
    stroke-dasharray: 239.1797637939453;
    stroke-dashoffset: 239.1797637939453;
    animation: line-anim 2s ease forwards 0.6s;
}

#logoText path:nth-child(4){
    stroke-dasharray: 333.69952392578125;
    stroke-dashoffset: 333.69952392578125;
    animation: line-anim 2s ease forwards 0.9s;
}

#logoText path:nth-child(5){
    stroke-dasharray: 140.88963317871094;
    stroke-dashoffset: 140.88963317871094;
    animation: line-anim 2s ease forwards 1.2s;
}

#logoText path:nth-child(6){
    stroke-dasharray: 239.177490234375;
    stroke-dashoffset: 239.177490234375;
    animation: line-anim 2s ease forwards 1.5s;
}

#logoText path:nth-child(7){
    stroke-dasharray: 195.33184814453125;
    stroke-dashoffset: 195.33184814453125;
    animation: line-anim 2s ease forwards 1.8s;
}

#logoText path:nth-child(8){
    stroke-dasharray: 174.4685516357422;
    stroke-dashoffset: 174.4685516357422;
    animation: line-anim 2s ease forwards 2.1s;
}

#logoText path:nth-child(9){
    stroke-dasharray: 136.91493225097656;
    stroke-dashoffset: 136.91493225097656;
    animation: line-anim 2s ease forwards 2.4s;
}

#logoText path:nth-child(10){
    stroke-dasharray: 221.10757446289062;
    stroke-dashoffset: 221.10757446289062;
    animation: line-anim 2s ease forwards 2.7s;
}

#logoText path:nth-child(11){
    stroke-dasharray: 228.7259063720703;
    stroke-dashoffset: 228.7259063720703;
    animation: line-anim 2s ease forwards 3.0s;
}

@keyframes line-anim{
    to{
        stroke-dashoffset: 0;
    }
}

@keyframes fill{
    to{
        fill:#429f9e;
    }
}

@media only screen and (min-width: 1280px) {
    
    .welcomeText{
        height: 100%;
        margin: auto;
        background-size: cover;
        background-repeat: no-repeat;
        width: 1280px;
    }

    #logoText{
        position: absolute;
        width: 1280px;
        animation: fill 0.5s ease forwards 4.8s;
    }

}