* {
    box-sizing: border-box;
}

body {
    background-color: rgb(223, 223, 255);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: rgb(36, 36, 36);
    /* height: 100vh; */
    margin: 0;
}

.title {
    font-size: 50px;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 20px;
}

.game-container {
    display: flex;
    justify-content: center;
    /* height: 100vh; */
}

.main-game {
    display: flex;
    background-color: rgb(255, 235, 245);
    max-width: 500px;
    max-height: 500px;
    width: 500px;
    height: 500px;
    box-shadow: 1px 1px 10px 5px rgb(194, 210, 255);
}

.row {
    width: 100%;
}

.box {
    border: 1px solid black;
    height: 33.3333333%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.box:hover  {
    cursor: pointer;
    background-color: azure;
}

.x {
    position: absolute;
    width: 55%;
    margin: 0;
}

.x-display {
    display: none;

}

.o-display {
    display: none;

}

.x1, .x2 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 8px;
    background-color: rgb(86, 161, 248);
    transform-origin: center;
}

.x1 {
    transform: translate(-50%, -50%) rotate(45deg);
    box-shadow: 1px 1px 10px 5px rgb(209, 209, 209);

}

.x2 {
    transform: translate(-50%, -50%) rotate(-45deg);
    box-shadow: 1px 1px 10px 5px rgb(209, 209, 209);

}

.o {
    position: absolute;
    width: 50%;
    border: 8px solid rgb(245, 110, 133);
    height: 50%;
    border-radius: 50%;
    box-shadow: 1px 1px 10px 5px rgb(209, 209, 209);
}

.o-true {
    background: linear-gradient(in hsl, rgb(172, 255, 172), rgb(187, 187, 255));
}

.x-true {
    background: linear-gradient(in hsl, rgb(255, 252, 172), rgb(255, 187, 243));
}