body {
    font-family: 'Press Start 2P', cursive;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #000;
    color: #fff;
    cursor: crosshair;
}

h1 {
    color: #ff69b4;
    text-shadow: 2px 2px #00f;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

table {
    border-collapse: collapse;
    margin: 20px 0;
}

td {
    width: 100px;
    height: 100px;
    text-align: center;
    vertical-align: middle;
    font-size: 2em;
    cursor: pointer;
    border: 5px solid #ff69b4;
    background-color: #00f;
    transition: background-color 0.3s, transform 0.3s;
}

td:hover {
    background-color: #ff69b4;
    color: #00f;
    transform: scale(1.1);
}

button {
    padding: 15px 30px;
    font-size: 1.2em;
    color: #00f;
    background-color: #ff69b4;
    border: 5px solid #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

button:hover {
    background-color: #00f;
    color: #ff69b4;
}

button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    background-color: #ff69b4;
    border: none;
    color: white;
    font-family: 'Press Start 2P', cursive;
}

button:hover {
    background-color: #ff1493;
}

/* Start https://www.cursors-4u.com */ * {cursor: url(https://ani.cursors-4u.net/cursors/cur-13/cur1151.ani), url(https://ani.cursors-4u.net/cursors/cur-13/cur1151.png), auto !important;} /* End https://www.cursors-4u.com */
