* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 20px;
}

body {
    font-family: Arial, sans-serif;
    background: cadetblue;
    height: 100vh !important;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

.title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000000;
}

.board {
    display: grid;
    grid-template-columns: 100px 100px 100px;
    grid-gap: 10px;
    justify-content: center;
    margin: 20px auto;
}

.square {
    width: 100px;
    height: 100px;
    background-color: #36047c85;
    border: 1px solid #000000;
    border-radius: 10px;
    font-size: 2rem;
    font-weight: bold;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.square:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.scorebox {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
    color: #000000;
    font-weight: bold;
    gap: 15px;
}

.scorebox div {
    padding: 10px 20px;
    border: 1px solid #000000;
    background-color: #36047c85;
}

.game-status {
    font-size: 1rem;
    margin-top: 15px;
    color: #000000;
    font-weight: bold;
}

#reset-game {
    margin-top: 25px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border: 1px solid #000000;
    background: #36047c85;
    color: #000000;
    cursor: pointer;
}

#reset-game:hover {
    background: bisque;
}