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

body {
    background: linear-gradient(135deg, #ff9a9e, #fad0c4, #a18cd1, #fbc2eb);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}cd path/to/Tic-Tac-Toe

.container {
    height: 70vh; /* fixed typo */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
}

.game {
    height: 60vmin;
    width: 60vmin;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5vmin;
    background-color: #f9f9f9;
    padding: 1vmin;
    border-radius: 2rem;
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.2);
}

.box {
    height: 18vmin;
    width: 18vmin;
    border-radius: 1rem;
    border: 2px solid #ccc;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
    font-size: 8vmin;
    color: #4682b4; /* cornflowerblue */
    background-color: #f0ffff; /* azure */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s, background-color 0.2s, color 0.2s;
}

.box:hover {
    background-color: #b0e0e6; /* powderblue */
    transform: scale(1.05);
}

#reset-btn,
#new-btn {
    padding: 1rem 2rem;
    font-size: 1.25rem;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

#reset-btn {
    background-color: #00008b; /* darkblue */
    color: #d2691e; /* chocolate */
}

#reset-btn:hover {
    background-color: #1e90ff;
    color: white;
}

#new-btn {
    background-color: #4682b4;
    color: white;
}

#new-btn:hover {
    background-color: #5f9ea0;
}

#msg {
    color: #8a2be2; /* blueviolet */
    font-size: 5vmin;
    font-weight: bold;
}

.msg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4rem;
}

.hide {
    display: none;
}