body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.inicio {
    background: linear-gradient(-45deg, #aa8b35, #5c2b03,#9c723b, #1d3c92);
    background-size: 400% 400%;
    animation: fondo 10s ease infinite;
}

@keyframes fondo {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


.pagina2 {
    background: linear-gradient(-45deg, #d8ae76 ,  #a26030,  #a26030,  #a26030);
    background-size: 400% 400%;
    animation: fondo 10s ease infinite;
}


.contenedor {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    animation: aparecer 1.5s ease;
}

@keyframes aparecer {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.boton {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    background: #fff;
    color: #333;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.boton:hover {
    background: #3d723d;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 0 15px #11ff00;
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
}
