@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo+Black&family=Barrio&family=Bitcount+Prop+Single:wght@100..900&family=Luckiest+Guy&family=Orbitron:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo+Black&family=Barrio&family=Bitcount+Prop+Single:wght@100..900&family=Gloria+Hallelujah&family=Luckiest+Guy&family=Orbitron:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo+Black&family=Barrio&family=Bitcount+Prop+Single:wght@100..900&family=Gloria+Hallelujah&family=Luckiest+Guy&family=Orbitron:wght@400..900&family=Oswald:wght@200..700&display=swap');
*{
    margin: 0;
    padding: 0;

}
body {
    background-color: rgb(34, 24, 24);
    
}
nav {
    background-color: rgb(252, 4, 4);
    color: rgb(0, 0, 0);
    height: 60px;
    font-size: 40px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-family: "Luckiest Guy", cursive;
    justify-content: center;
    font-weight: 400;
    font-style: normal;
}

nav ul {
    list-style-type: none;
}

.gameContainer {
    background-color: rgb(92, 0, 240);
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.Container {
    display: grid;
    grid-template-rows: repeat(3,10vw);
    grid-template-columns: repeat(3, 10vw);
    font-family: "Oswald", sans-serif;
    position: relative;
}

.box{
    border: 1px solid rgb(255, 255, 255);
    font-size: 8vw;  
    cursor: pointer;
    display: flex;   
    justify-content: center;
    align-items: center;
}

.box:hover {
    background-color: rgb(255, 255, 255);
}
.info{
    font-size: 35px;
}
.gameinfo{
    padding: 0 30px;
    font-family: "Gloria Hallelujah", cursive;
}
.gameinfo h1{
        font-size: 2.5rem;
    }

.imgbox img{
    width: 0px;
    transition: width 1s ease-in-out;
}

.br-0{
    border-right: 0;
}
.bl-0{
    border-left: 0;
}
.bt-0{
    border-top: 0;
}
.bb-0{
    border-bottom: 0;
}

#reset{
    margin: 0 23px;
    background-color: rgb(0, 0, 0);
    color: white;
    font-size: 20px;
    padding: 1px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-family: "Gloria Hallelujah", cursive;
}

.line{
    background-color: black;
    width: 0vw;
    height: 3px;
    position: absolute;
    background-color: rgb(248, 0, 0);
    transition: width 1s ease-in-out;
}

@media screen and (max-width: 950px)
{
    .gameContainer{
        flex-wrap: wrap;
    }
    .gameinfo{
        margin-top: 34px;
    }   
    .Container{
        grid-template-rows: repeat(3, 20vw);
        grid-template-columns: repeat(3, 20vw);
    }
}


