
body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

input {
    width: 80%;
}


button {
    border-radius: 5px;
    border-style: solid;
    font-size: 25px;
}

td,th {
    border-style: groove;
}


#playNowButton {
    display: none;
    animation-name: playNowButtonDance;
    animation-iteration-count: infinite;
    animation-duration: 1.8s;
}

@keyframes playNowButtonDance {
    0% {
        font-size: 25px;
        background-color: green;
    }

    5% {
        font-size: 30px;
        transform: rotate(10deg);
    }

    25% {
        font-size: 25px;
        background-color: blue;
    }

    30% {
        font-size: 30px;
        transform: rotate(-10deg);
    }

    50% {
        font-size: 25px;
        background-color: orange;
    }

    55% {
        font-size: 30px;
        transform: rotate(10deg);
    }

    75% {
        font-size: 25px;
        background-color: red;
    }

    80% {
        font-size: 30px;
        transform: rotate(-10deg);
    }
}





#blackoutDiv {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}



#blackoutDiv.active {
    background-color: black;
    animation-name: blackoutAnimation;
    animation-iteration-count: 1;
    animation-duration: 3s;
}


@keyframes blackoutAnimation {
    0% {
        background-color: transparent;
    }

    100% {
        background-color: black;
    }
}



#blackoutDiv span {
    position: absolute;
    font-size: 40px;
    color: transparent;
}

#blackoutDiv span.show {
    animation-name: spamAnimation;
    animation-iteration-count: 1;
    animation-duration: 3s;
}

@keyframes spamAnimation {
    0% {
        color: transparent;
    }

    50% {
        color: white;
    }

    100% {
        color: transparent;
    }
}



#blackoutDiv span:nth-child(1) {
    top: 100px;
    left: 30px;
}

#blackoutDiv span:nth-child(2) {
    top: 50px;
    left: 20px;
}

#blackoutDiv span:nth-child(4) {
    top: 300px;
    left: 20px;
}

#blackoutDiv span:nth-child(5) {
    top: 200px;
    left: 10px;
}

#gameCanvas {
    background-color: white;
    display: none;
    pointer-events: none;
}

#gameCanvas.active {
    display: block;
    pointer-events: all;
}