/* Estilos generales */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    width: 100%;
    height: 100vh;
    animation-name: abanner;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in;
    background-size: cover;
    background-position: center;
}

@keyframes abanner {
    0% { background-image: url(/imgs/suscrip\ \(1\).jpg); }
    20% { background-image: url(/imgs/suscrip\ \(2\).jpg); }
    50% { background-image: url(/imgs/suscrip\ \(3\).jpg); }
    70% { background-image: url(/imgs/suscrip\ \(4\).jpg); }
    100% { background-image: url(/imgs/suscrip\ \(5\).jpg); }
}

.cuadro {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.466);
    display: flex;
    justify-content: center;
    align-items: center;
}

.texto {
    width: 500px;
    background-color: rgba(126, 98, 56, 0.702);
    color: aliceblue;
    padding: 25px 40px;
    text-align: center;
    border-radius: 20px;
}

.texto h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

button {
    padding: 10px 20px;
    background-color: #ff5733;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 15px;
}

button:hover {
    background-color: #cc4626;
}
