/* :Root{

} */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #D9D9D9;
}

.game {
    margin: 100px auto;
    width: 500px;
    height: 550px;
    background: #192A32;
}

.game .head {
    display: flex;
    padding: 30px 30px 0px 30px;
    justify-content: space-between;
}

.game .head .marks {
    display: flex;
    align-items: center;

}

.game .head .marks i:first-child {
    color: #31C4BE;
    font-size: 48px;
    margin-right: 5px;
}

.game .head .marks i:last-child {
    color: #F3B03E;
    font-size: 40px;
}

.game .head .nextTurn {
    width: fit-content;
    height: 40px;
    padding: 10px;
    background-color: #2b414b;
    text-align: center;
    display: flex;
    align-items: center;
}

.game .head .nextTurn i {
    color: #A8BEC9;
    font-size: 30px;
    margin-right: 8px;
}

.game .head .nextTurn span {
    font-family: "Inter Tight", sans-serif;
    font-weight: 650;
    color: #A8BEC9;
}

.game .head .restart {
    width: 40px;
    height: 40px;
    padding: 10px;
    background-color: #2b414b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.game .head .restart i {
    color: #A8BEC9;
    font-size: 22px;
}

.game .Boxs {
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
    width: 330px;
    height: 330px;
}

.game .Boxs .Element {
    background-color: #2b414b;

}

.game .Boxs .Element i.fa-solid.fa-xmark {
    color: #A8BEC9;
    font-size: 50px;
    display: flex;
    margin-top: 28px;
    justify-content: center;
}

.game .Boxs .Element i.fa-solid.fa-o {
    color: #F3B03E;
    font-size: 50px;
    display: flex;
    margin-top: 28px;
    justify-content: center;
}
.Win{
    text-align: center;
    font-family: "Inter Tight", sans-serif;
    font-weight: 650;
    color: #bd0000;
    margin-top: 20px;
    font-size: 24px;
}