@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaina+2&family=Roboto&display=swap');
*{
    margin: 0;
    padding: 0;
}
body{
    background-color: #FFD700;
}
.gameContainer{ 
    display: flex; /* expands items to fill available free space or shrinks them to prevent overflow */
    justify-content: center; /* put all the information in center */
    margin-top: 50px; /* the margin on top is 50 px */
}
.container{
    display: grid;
    grid-template-rows: repeat(3, 10vw);
    grid-template-columns: repeat(3, 10vw);
    font-family: 'Roboto', sans-serif;
    position: relative;
}
.box{
    border: 3px solid rgba(255, 140, 0, 0.6);
    font-size: 8vw;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box:hover{
    background-color: rgb(255, 127, 80);
}

.info {
    font-size: 22px;
}

.gameInfo{
    padding: 0 34px;
    font-family: "Lucida Console", "Courier New", monospace;
    color: #fdfdcd;
}

.gameInfo h1{
    font-size: 2.0rem;
}

.imgbox img{
    width: 0;
    transition: width 1s ease-in-out;
}
.imgtie img{
    width: 0;
    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: 10px 10px;
    padding: 1px 18px;
    background: coral;
    border-radius: 6px;
    border-color: darkorange;
    cursor: pointer;
    color: white;
    font-family: "Lucida Console", monospace;
    font-size: 15px;
    font-weight: bolder;
}
.line{
    background-color: tomato;
    height: 3px;
    width: 0;
    position: absolute;
    background-color: orangered;
    transition: width 1s ease-in-out;
}
@media screen and (max-width: 950px)
{
    .gameContainer{
        flex-wrap: wrap;
    }
    .gameInfo{
        margin-top: 34px;
    }
    .gameInfo h1{
        font-size: 1.5rem;
    }
    .container { 
        grid-template-rows: repeat(3, 20vw);
        grid-template-columns: repeat(3, 20vw);
    }
}