* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-blend-mode: multiply;
    font-family: 'Nanum Brush Script', cursive;
    color: rgba(0, 0, 0, 0.8);
}

.mainContainer {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url("bg.jpg");
    background-size: 100%;
}

.gameContainer {
    width: 35%;
    height: 95%;
    border: 1px solid black;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gameContainer h1 {
    margin-top: 4%;
    margin-bottom: 2%;
}

.playerBoxOne,.playerBoxTwo {
    width: 75%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1%;
    margin-top: 0;
    padding: 1%;
}

.resultBox {
    width: 75%;
    height: 7%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.resultBoxAfter {
    width: 75%;
    height: 7%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: red;
    color: white;
    animation: DipDop 0.2s infinite;
}

@keyframes DipDop {
    50%{
        background: rgba(255, 0, 0, 0.1);
        color: rgba(255, 255, 255, 0);
    }
}

.gameBox {
    width: 75%;
    height: 55%;
    margin-top: 0%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(3,1fr);
    gap: 1%;
    margin-top: 5%;
    border-radius: 10px;
    filter: drop-shadow(0 0 15px rgba(212, 212, 212, 0.726));
    z-index: 1;
}

.gameBox button {
    background: transparent;
    border: 0;
    border-radius: 5px;
    font-size: 5em;
    font-family: 'Grape Nuts', cursive;
    box-shadow: 0 0 5px black;
}

.resetButtonBox {
    width: 75%;
    height: 10%;
    display: grid;
    margin-top: 1%;
}

.resetButtonBox button {
    background: transparent;
    border: 0;
    border-radius: 10px;
    font-size: 1.2em;
}

button, .btn {
    cursor: pointer;
    background: transparent;
}

.last-quote{
    margin-bottom: 3%;
    font-size: 1.2em;
}

.backButton {
    width: 94%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    top: 4%;
    left: 6%;
}

.backButton .bi {
    font-size: 200%;
}

@media screen and (max-width: 1000px) {
    .gameContainer {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .playerBoxOne,.playerBoxTwo {
        width: 90%;
    }

    .resultBox {
        width: 90%;
    }

    .gameBox {
        width: 90%;
    }

    .resetButtonBox {
        width: 90%;
        margin-top: 2%;
    }
    
    .resultBoxAfter {
        width: 90%;
    }  
}
