/* global style */
body {
    cursor: url(../img/dphead.png), auto;
    display: block;
    margin: 0;
    padding: 0;
    background: #9ec6ff;
    background: linear-gradient(180deg, rgba(158, 198, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    font-family: "argent-pixel-cf", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
}

button {
    font-family: inherit;
}

/* main container */
.container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popUp {
    display: none;
}

/* containers */
.gameCard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    text-align: center;
    min-width: 680px;
    width: 680px;
    min-height: 100vh;
    height: 100vh;
    margin: 0px;
    padding: 0px;

    #gameTitle {
        font-size: 64px;
        margin-bottom: 15px;
        margin-top: 0;
    }
}

.screen {
    display: flex;
    position: relative;
    background-color: rgb(103, 156, 237);
    align-self: center;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-width: 680px;
    width: 680px;
    min-height: 480px;
    height: 480px;
    border: 2px solid black;
    border-radius: 10px;
}

.ctaButtons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 24px;

    .button {
        display: inline-block;
        background-color: paleturquoise;
        cursor: pointer;
        padding: 10px 10px;
        margin: 10px 10px;
        border: 2px solid black;
        border-radius: 10px;
        font-size: 24px;
    }
}

/* score board */
.scoreBoard {
    background-color: rgb(103, 156, 237);
    padding: 10px 10px;
    margin: 10px 10px;
    border: 2px solid black;
    border-radius: 10px;
}

/* jeff! (target) */
.jeff {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: url(../img/jeff1.png);
    background-size: cover;
    background-position: center;
}

@keyframes shrinkFade {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}

.shrink {
    animation: shrinkFade 2s linear forwards;
}

/* finished game pop up */
.popUp {
    background-color: white;
    justify-content: center;
    z-index: 1;
    width: 275px;
    height: 130px;
    border: 2px solid black;
    border-radius: 10px;

    h1 {
        font-size: 36px;
    }
}