* {
    margin: 0;
    padding: 0;
}

body {
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: 100vw 100vh;
    background-image: url('https://getwallpapers.com/wallpaper/full/9/0/1/870316-video-game-backgrounds-1920x1080-for-xiaomi.jpg');
}

.gameDisplay {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.sparkle{
    display: none;
    position: absolute;
    height: 100vh;
    width: 100vw;
    object-fit: contain;
    z-index: -1;
}



.container {
    width: 300px;
    height: 300px;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    background: linear-gradient(135deg, #fc466b, #3f5efb);

    align-content: center;
}

.grids {
    border:1.2px solid rgb(125, 0, 105);
    display: flex;
    font-size: 3rem;
    justify-content: center;
    align-items: center;

}

.gifs {
    height: 300px;
    width: 190px;
    border: 2px solid black;
}
@media screen and (max-width:400px) {
    .gifs{
        width: 140px;
    }
    
}

.nextGameToStart {
    position: absolute;
    bottom: 50px;
    font-size: 2rem;

}

.next {

    bottom: 10px;

}

#restart {
    background: lightblue;
    padding: 3px;
    font-size: 1.2rem;
    border-radius: 7px;
    display: none;
}

.winnerName {
    background: radial-gradient(#00f3ff, purple);
    font-weight: bold;
    background-clip: text;
    color: transparent;
}

.winnerBackground {
    background-color: burlywood;
    background-color: #d6bf79;
    border-radius: 5px;
}

#HEADING {
    font-size: 1.7rem;
    margin-top: 10px;
    background: linear-gradient(#9aff9a, #cf6100);
    background-clip: border-box;
    background-clip: text;
    color: transparent;
    padding-bottom: 10px;
    font-weight: bold;
}


.heading {
    background-color: rgb(87, 8, 147);
    position: absolute;
    top: 20px;
    border-radius: 6px;


}
