@import url('https://fonts.googleapis.com/css2?family=Itim&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=arrow_back_2');

/*css for menu.html*/
body {
    background-color: #203b25;
    /*
    border: 24px solid;
    border-top-color: #744b30;
    border-right-color: #42220d;
    border-bottom-color: #42220d;
    border-left-color: #744b30;
    box-shadow: inset 3px 3px 10px rgb(0, 0, 0);
    */
    font-family: "Itim", cursive;
    margin: 0;
    padding: 0;
    height: 93vh;
}

.school_board {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
}

.back-icon {
    display: flex;
    margin: 3% 5% 0 5%;
}

.underline {
    display: flex;
    background-color: #fff;
    width: 0%;
    height: 2px;
    border-radius: 50px;
}

/* css for game.html */
.container {
    display: flex;
    justify-content: space-between;
    gap: 2vw;
    margin: 3% 5% 0 5%;
}

.borad-display {
    display: inline-flex;
    border-radius: 3vw;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 5% 0% 0% 0%;
}

.line {
    background-color: #f6f7eb7e;
    border-radius: 30px;
    height: 30px;
    width: 0vw;
    position: absolute;
    transition: width 1s ease-in-out;
    z-index: 1;
}

.game-borad {
    display: grid;
    grid-template-rows: repeat(3, 10vw);
    grid-template-columns: repeat(3, 10vw);
    position: relative;
}

.box {
    display: flex;
    justify-content: center;
    align-items: center;
    border: #f6f7eb 2px solid;
    color: #f6f7eb;
    font-family: "Itim", cursive;
    font-size: 7vw;
    cursor: pointer;
}

.box:hover {
    background-color: #f6f7eb3b;
}

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

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

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

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

.game-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10%;
    padding: 5% 5% 0% 0%;
}

.info {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f6f7eb;
    font-size: 2vw;
    border-radius: 2vw;
    height: 10vh;
    width: 10vw;
}

.Xpoints {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f6f7eb;
    font-size: 2vw;
    border: #f6f7eb 3px solid;
    border-radius: 3vw;
    height: 8vh;
    width: 15vw;
}

.Opoints {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f6f7eb;
    font-size: 2vw;
    border: #f6f7eb 3px solid;
    border-radius: 3vw;
    height: 8vh;
    width: 15vw;
}

.resetbutton {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    height: 50px;
}

.resetgame {
    display: flex;
    justify-content: center;
    color: #f6f7eb;
    font-family: "Itim", cursive;
    font-size: 2vw;
    border-radius: 2vw;
    border-color: #f6f7eb;
    width: 100%;
    cursor: pointer;
}

.resetbutton:hover .underline {
    width: 100%;
    transition: width 0.2s linear;
    border-radius: 50px;
}