body {
    margin: 0;
    overflow: hidden;
    background: #FEFF00;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
}

/* Raise the image a bit */
#spinImage {
    width: min(40vw, 300px);
    height: auto;
    transform-origin: center;
    user-select: none;
    pointer-events: none;
    margin-bottom: 12vh;
}

/* Responsive text */
#message {
    position: absolute;
    bottom: 90px;
    width: 90%;
    text-align: center;
    font-weight: bold;
    color: #000;

    /* Automatically scales between 20px and 48px */
    font-size: clamp(20px, 3vw, 48px);
}

.footer {
    position: absolute;
    bottom: 20px;
}

.tos-button {
    display: inline-block;
    padding: 12px 24px;
    background: #000;
    color: #FEFF00;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;

    /* Button text also scales */
    font-size: clamp(14px, 1.3vw, 20px);

    transition: background 0.2s, color 0.2s;
}

.tos-button:hover {
    background: #333;
    color: #FFF;
}