@import url('https://fonts.googleapis.com/css2?family=Alkalami&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Alkalami&family=Roboto:ital,wght@0,500;1,300&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Alkalami&family=Baloo+Thambi+2&family=Roboto:ital,wght@0,500;1,300&display=swap');

* {
    margin: 0;
    padding: 0;
}

nav {
    background-color: blueviolet;
    color: white;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-family: 'Alkalami', serif;
    font-weight: bold;
    /* margin-bottom: 30px; */
    padding-top: 5px;

}


nav ul {
    list-style-type: none;
}

.gameContainer {
    display: flex;
    justify-content: center;
    margin-top: 30px;

}

.container {
    display: grid;
    grid-template-columns: repeat(3, 10vw);
    grid-template-rows: repeat(3, 10vw);
    font-family: 'Roboto', sans-serif;
    position: relative;
}

.line {
    background-color: purple;
    width: 0vw;
    height: 3px;
    position: absolute;
    transition: width 1s ease-in-out;
}

.box {
    border: 1px solid black;
    font-size: 7vw;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box:hover {
    background-color: aliceblue;
}

/* .box:hover .innerText{
    display: block;
} */

.gameInfo {
    padding: 0 34px;
    font-family: 'Baloo Thambi 2', cursive;
}

.imageBox img {
    width: 0;
    margin-left: 45px;
    transition: width 1s ease-in-out;

}

.bt-0 {
    border-top: 0;
}

.bl-0 {
    border-left: 0;
}

.bb-0 {
    border-bottom: 0;
}

.br-0 {
    border-right: 0;
}

#reset {
    width: 100px;
    color: black;
    padding: 6px;
    margin-left: 100px;
    margin-top: 10px;
}

.info {

    margin-top: 20px;
    font-size: 25px;
    margin-left: 90px;
}

@media screen and (max-width : 900px) {
    .gameContainer {
        width: 90%;
        flex-wrap: wrap;

    }

    .gameInfo {
        margin-top: 30px;
    }

    .container {
        display: grid;
        grid-template-columns: repeat(3, 17vw);
        grid-template-rows: repeat(3, 17vw);
    }
}
