body {
    background: #000;
    font-family: comfortaa;
    overflow: hidden;
    transition: 3s all;
}

#progress {
    margin: 20px;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 100;

}

#link {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    z-index: 100;
    transition: 0.5s all;
}

#link:hover {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #009dff;
    text-decoration: none;
    z-index: 100;
}

.message {
    user-select: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 39px;
    width: 500px;
    height: auto;
    line-height: 50px;
    color: #000;
    background-color: #fff;
    border-radius: 10px;
    padding: 35px;
    margin: 20px;
    transition: transform 0.5s ease-out;
    animation: glow 2s infinite ease-in-out;
    z-index: 10000000;
    font-weight: 900;
}

.message2 {
    display: none;
    user-select: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 40px;
    width: 370px;
    height: 200px;
    line-height: 27px;
    color: #000;
    background-color: #fff;
    border-radius: 10px;
    padding: 35px;
    margin: 20px;
    transition: 0.5s all;
    animation: glow 2s infinite ease-in-out;
    z-index: 10000000;
    font-weight: 900;
}

#done {
    margin: 15px;
    font-family: comfortaa;
    border-radius: 10px;
    padding: 10px;
    border: none;
    color: #fff;
    font-size: 35px;
    background-color: #009dff;
    transition: 0.5s all;
    font-weight: 900;
}

#done:hover {
    cursor: pointer;
    border-radius: 10px;
    padding: 10px;
    border: none;
    color: #009dff;
    background-color: #e0e0e0;
    transition: 0.5s all;
}


.blackout {
    background-image: url("img/stars.jpg");
    background-repeat: repeat;
    background-size: auto;
    user-select: none;
    opacity: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    transition: 2s all;
    animation: scroll-diagonal 15s infinite linear;
}

.hidden {
    display: none;
}

@keyframes scroll-diagonal {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 622px 360px;
        /* moves diagonally down-right */
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 30px rgba(0, 157, 255, 0.8);
    }

    50% {
        box-shadow: 0 0 80px rgba(0, 157, 255, 1);
    }

    100% {
        box-shadow: 0 0 30px rgba(0, 157, 255, 0.8);
    }
}