body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background-color: #f9f9f9;
    height: 100vh;
    overflow: hidden;

    font-family: 'Poppins', sans-serif;
}

/* Header general */
header {
    width: 100%;
    height: 100vh;
    background: repeating-linear-gradient(
        90deg,
        #f2a6b3,
        #f2a6b3 80px,
        #f4b0bd 80px,
        #f4b0bd 160px
    );
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 5px solid #e8a0ad;
}

/* Imagen del logo */
.logo {
    max-width: 1300px;
    width: 100%;
    height: auto;
}

/* Spinner loading*/
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(211, 0, 88, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

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

p{
    font-size: xx-large;
    font-style:italic;
    color: #f9f9f9;
}