html {
    font-size: 16px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 10px;
}

#confetti {
    width: 1300px;
    height: 800px;
    margin-top: -800px;
    grid-column: 3 / 12;
}

@keyframes example{
    0% {
        top: 500px;
    }
   
     33%{
        top: 1800px;
    }
    
}
.cell {
    min-height: 30px;
    font-family: "Pathway Gothic One", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
}

.cellheader {
    background-color: rgb(198, 228, 255);
    min-height: 60px;
    font-size: 2em;
    margin: 40px;
    font-family: "Pathway Gothic One", serif;
    font-weight: 800;
    font-style: normal;
    
    text-align: center;
}

.game1,
.game2 {
    font-family: "Pathway Gothic One", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.8em;
    padding: 5px;
}

#g1,
#g2,
#g3,
#g4,
#g5,
#g6 {
    font-size: 1.1em;
    font-family: "Pathway Gothic One", serif;
    font-weight: 400;
    font-style: normal;
}

#banner {
    height: 200px;
    width: 800px;
}

#submit:hover {
    background-color: darkgreen;
}

.mover {
    animation-name: example;
    animation-duration: 4s;
    transition: all 3s ease;
     position: relative;
}


@media only screen and (min-width: 1025px) {

    header,
    footer {
        grid-column-end: span 12;
    }

    #exp {
        grid-column: 8 / 10;
        font-size: 1.8em;
        text-align: left;
        padding: 30px;
        font-family: "Pathway Gothic One", serif;
        font-weight: 400;
        font-style: normal;
    }

    #form {
        grid-column: 3 / 6;

    }

    #submit {
        grid-column: 4 / 8;
        height: 40px;
        width: 70px;
        font-family: "Pathway Gothic One", serif;
        font-weight: 400;
        font-style: normal;
        font-size: 1.3em;
    }

    #winner {
        grid-column: 7 / 9;
        text-align: center;
        font-size: 1.4em;
        font-family: "Pathway Gothic One", serif;
        font-weight: 400;
        font-style: normal;
        padding: 10px;
    }

    #response {
        grid-column: 7 / 9;
        background-color: rgb(198, 228, 255);
        height: 50px;
        font-size: 2em;
        font-family: "Pathway Gothic One", serif;
        font-weight: 400;
        font-style: normal;
        text-align: center;
        margin-bottom: 20px;
    }

    #boom {
        grid-column: 7 / 10;
        padding: 20px;
    }

}
