/* Ajustes generales */
body {
    background: linear-gradient(to right, rgba(255, 253, 171, 0.89), rgba(219, 192, 246, 0.99)); /* Degradé */
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1 {
    font-family: 'Dancing Script', cursive; /* Aplica la fuente manuscrita */
    color: rgba(113, 64, 159, 0.99);
    font-size: 3.5rem;
}

.content {
    flex: 1; /* Asegura que el contenido crezca para empujar el footer hacia abajo */
}

.circle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.circle {
    width: 200px;
    height: 200px;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

form {
    position: relative; /* Para posicionar correctamente el pseudo-elemento */
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    background-color: rgba(113, 64, 159, 0.48);
    padding: 20px;
    border-radius: 10px;
    z-index: 1;
    color: rgb(255, 255, 255);
}




#result {
    color: rgba(113, 64, 159, 0.99);
    font-family: 'Dancing Script', cursive;
    font-size: 2.0rem;
}

footer {
    background-color: rgb(0, 0, 0);
    color: white;
    padding: 30px 0;
    border-top: 15px solid rgba(144, 95, 181, 0.99);
    text-align: center;
    width: 100%;
    position: sticky; /* Hace que el footer se "pegue" al fondo si la página es más pequeña */
    bottom: 0; /* Siempre estará al fondo */
}
