* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
body {
    background-image: linear-gradient(to bottom, #9a031e, #8a185a, #563b7a, #134a76, #0f4c5c);
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 45px;
}
.board {
    width: 500px;
    height: 500px;
    display: grid;
    gap:2px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    background-image: url(/assets/board.png);
    background-size: cover;
    box-shadow: 0 0 15px 10px black;
    border: 5px rgb(100, 100, 100);
    border-style:double;
    border-radius: 5px;
}

.circle {
    background-image: url(/assets/board-o.png);
}

.cross {
    background-image: url(/assets/board-x.png);
}

.circle, .cross {
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
}

#inputs {
    display: flex;
    justify-content: space-around;
    width: 800px;
}

#player1, #player2 {
    font-size: 25px;
}


#players {
    display: flex;
    width: 600px;
    justify-content: space-around;
    position: relative;
    top:55px;
}

#result {
    font-size: 45px;
    position: relative;
    top:25px;
}

#restart {
    font-size: 25px;
    border-radius: 5px;
    padding: 5px;
    background-color:#9a031e;
    color: white;
}
