* {
    font-family: 'Playfair Display', serif;
    /* outline: 2px solid yellow; */
    margin: 0px 0px;
}

body {
    background-image: url('./imgs/bg.jpg');
    background-size: cover;
    display: inline-block;
}

h1 {
    color: black;
    font-size: 7vw;
    text-align: center;
    text-shadow: 2px 2px 5px orange;
    padding: 10px 0px;
}

.player1, .player2 {
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    mix-blend-mode: multiply;
    text-align: center;
    padding: 2%;
}

.player1 {
    background-image: url('./imgs/nimbus.jpeg');
}

.player2 {
    background-image: url('./imgs/nimbus2.jpeg');
}

#answer ul {
    display: flex;
    flex-flow: column;
    list-style-type: none;
    padding-left: 0px;
    /* justify-content: center;
    align-items: center; */
    /* display: table-cell;
    vertical-align: middle; */
}

#answer li {
    background-color: palevioletred;
    border-style: outset;
    margin: 2px 15vw;
    padding: 5px;
    text-align: center;
    /* height: 15vh;
    justify-self: end;
    align-self: baseline; */
}

#question {
    display: flex;
    justify-content: center;
    background-color: palevioletred;
    margin: 2vh 15vw;
    padding: 1vmin;
    border-style: outset;
}

#reset {
    display: flex;
    justify-content: center;
    padding: 0px;
    margin: 0 15vw;
    object-fit: contain;
    background-image: url('./imgs/senzubean.gif');
    /* object-fit: contain; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 70vmin;
    height: 30vmax;
}

#reset:hover {
    background-image: url('./imgs/senzucatch.gif');
}

@media only screen and (max-width: 425px) {
    .scoreColumn {
        display: none;
    }

    #scoreRow {
        display: flex;
        justify-content: space-between;
    }

    body {
        width: 100%
    }

    .player1 {
        padding-left: 5%;
        padding-right: 15%;
    }

    .player2 {
        padding-left: 15%;
        padding-right: 5%;
    }

}

@media only screen and (min-width: 426px) {
    .scoreColumn {
        width: 20vw;
    }
    #scoreRow {
        display: none;
    }

    body {
        display: flex;
        margin: 0 auto;
    }

    .player1, .player2 {
        background-image: url('./imgs/nimbus_up_tail_right.jpeg');
        background-size: contain;
        margin-top: 10px;
        padding-top: 40%;
        padding-bottom: 60%;
        font-size: 1.3em;
    }

    .animate {
        position: relative;
        animation-name: tail-whip;
        animation-duration: 0.5s;
        animation-iteration-count: infinite;
    }

    @keyframes tail-whip {
        50% {background-image: url('./imgs/nimbus_up_tail_left.jpeg');}
    }

    #board {
        width: 60%;
    }

    #question {
        background-color: palevioletred;
        padding: 20px;
        border-style: outset;
        margin: 5px 0px;
    }

    #answer li {
        margin: 2px 0;
    }

    h1 {
        font-size: 150%;
        margin-top: 7vh;
        margin-bottom: 7vh;
    }

    .scoreColumn {
        font-size: 150%;
    }

    #reset {
        margin: 0px;
        width: 60vmin;
        height: 30vmax;
    }

    #question, #answer, #reset {
        margin: 3vh auto;
    }
}

@media only screen and (min-width: 575px) {
    h1 {
        font-size: 200%;
        margin-top: 7vh;
        margin-bottom: 5vh;
    }

    #QA {
        font-size: 110%;
    }

    #reset {
        margin: 0px;
        width: 60vw;
        height: 40vmax;
    }
}

@media only screen and (min-width: 768px) {
    h1 {
        font-size: 250%;
        margin-top: 7vh;
        margin-bottom: 5vh;
    }

    #QA {
        font-size: 150%;
    }

    #reset {
        height: 40vmax;
        width: 60vw;
    }
}

@media only screen and (min-width: 900px) {
    h1 {
        font-size: 320%;
    }

    #QA {
        font-size: 3vw;
    }
}

@media only screen and (min-width: 1440px) {
    .player1, .player2 {
        font-size: 3em;
    }
}