@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#main-waiting {
    background-image: url("/static/img/skins/dessertSkinWeb/bg.png");
}

#main-waiting img {
    animation: spin 2s linear infinite; /* Adjust duration and timing as needed */
}

#descr {
    border-radius: 10px;
    padding: 20px 20px 10px 10px;
}

.instruction {
    background-color: hsl(0, 0%, 96%);
    font-weight: bold;
    padding: 1em;
    border-radius: 10px;
}
