/*app specific css for rosesgames.com */

/* Set the global font-family to Atkinson Hyperlegible */
body {
    font-family: 'Atkinson Hyperlegible', sans-serif;
}

.centered {
    text-align: center;
}

.centered select {
    width: 100%;
    /* Adjust the width as needed */
    margin-bottom: 10px;
    /* Optional: Add some space between the selects */
}


@keyframes flash {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

footer {
    text-align: center;
    animation: flash 2s infinite;
}
