/* Estilos generales */

body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color:#00FF00,;
    height: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh; /* 100% del viewport height */
    background-image: url('background-image.jpg'); /* Cambia por tu imagen de fondo */
    background-size: contain;
    background-position: center;
    color: #00FF00;
    text-align: center;
}

.container h1 {
    margin-top: 20px;
    font-size: 3rem;
}

.texto-inferior {
    margin-bottom: 20px;
}

.texto-inferior p {
    font-size: 1.5rem;
    font-style: italic;
}
