body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #666666;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    gap: 2rem; /* Espacio entre el título y la imagen */
}

h1 {
    color: white;
    font-weight: 900;
    font-size: 4rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    padding-top: 2rem; /* Espacio arriba del título */
}

.container {
    width: 80%;
    height: 70vh; /* Reducido para dar espacio al título */
    background: url('../img/fondo1.jpeg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}