body,
.paska {
    background-color: black;
    overflow: hidden;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;

    /* background-image: url(img/happy.png); */
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.ukkospeak {
    animation: speak 1s;
    animation-iteration-count: infinite;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInOut {
    0%      { opacity: 0; }
    15%     { opacity: 1; }
    85%     { opacity: 1; }
    100%    { opacity: 0; }
}

@keyframes fadeOut {
    0%      { opacity: 1; }    
    100%    { opacity: 0; }
}


@keyframes pulse {
    0% {
        background-color: black;
    }

    75% {
        background-color: #cc0000;
    }

    100% {
        background-color: black;
    }
}

@keyframes speak {
    0% {
        background-image: url("img/ukko.png");
    }

    75% {
        background-image: url("img/ukko2.png");
    }

    100% {
        background-image: url("img/ukko.png");
    }
}

.karsina {
    top: 0;
    left: 0;
    position: absolute;
    transform-origin: 0 0;
    position: absolute;
    width: 1456px;
    height: 816px;
    background-color: #ff0000;
}

.juoppo {
    border: 0;
    position: absolute;
    width: 1456px;
    height: 816px;
}

.suu {
    border: 0;
    position: absolute;
    z-index: 2;
    left: 562px;
    top: 425px;
    visibility: hidden;
}

.blackness {
    position:fixed;
    left:0;
    top:0;
    width:100vw;
    height:100vh;
    border:0;
    padding:0;
    z-index:2;
    background-color: black;
    opacity: 1;
}

.fadeinout {
    animation: fadeInOut 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.fadeout {
    animation: fadeOut 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.blackbutton {
    width:100vw;
    height:100vh;
    background-color:black;
    border:0;
    color:white;
    font-family: Rajdhani, sans-serif;
    font-size: 8vw;
}