* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: 1s all;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}

.block {
    margin: 50px auto;
    width: 400px;
    height: 400px;
    border: 20px solid orange;
    position: relative;
}

.inside {
    background: black;
    width: 100px;
    height: 100px;
    position: absolute;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.inside:hover {
    background: red;
}

.button {
    width: 30px;
    height: 30px;
    background: orange;
}

.button:hover {
    background: black;
}

.wrapper {
    margin-top: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    display: none;
}

.middle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.insideX, .insideY {
    color: white;
    font-size: 12px;
    font-weight: 400;
    font-family: 'Courier New', Courier, monospace;
}

.subs {
    position: absolute;
    font-size: 18px;
    padding: 20px 20px;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 800;
    color: white;
    margin-left: 50px;
}

.info {
    font-family: 'Courier New', Courier, monospace;
    font-size: 40px;
    font-weight: 700;
    margin-top: 30px;
}

.chess {
    width: 380px;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px 0px;
    background: orange;
    margin-bottom: 100px;
}

.chess__card {
    width: 30%;
    background: black;
    height: 110px;
    position: relative;
}

.circles::before {
    /* content: 'O';
    position: absolute;
    color: orange;
    font-size: 100px;
    left: 23px; */
    content: '';
    width: 80%;
    height: 82%;
    background-image: url('../img/white_circle.png');
    position: absolute;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    top: 5px;
    left: 5px;
    border-radius: 100%;
    border: 6px solid black;
    
}

.cross::before {
    /* content: 'X';
    position: absolute;
    color: orange;
    font-size: 100px;
    left: 25px; */
    content: '';
    width: 100%;
    height: 100%;
    background-image: url('../img/white_cross2.png');
    position: absolute;
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
    top: 0px;
    left: 0px;
}

.variable {
    width: 350px;
    display: flex;
    justify-content: space-between;
    margin: 10px auto;
}

.variable__card {
    background: grey;
    padding: 10px;
    border-radius: 10px;

    cursor: pointer;
}

img {
    width: 40px;
}

.reload {
    border: 2px solid black;
    cursor: pointer;
    border-radius: 20px;
    padding: 10px;
}

h2 {
    text-align: center;
    display: block;
    margin: 10px auto;
    max-width: 400px;
}

h1 {
    text-align: center;
    margin-top: 30px;
    font-size: 70px;
}

.game__item {
    width: 320px;
    margin: 0px auto;
    margin-bottom: 100px;
}

.game__item li {
    font-family: 'Courier New';
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 5px;
}