/* Reset de márgenes y paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: black; /* Fondo negro en todo el sitio */
}

/* Contenedor del fondo */
.background-container {
    position: relative;
    width: 100%;
    height: 70vh; /* Imagen más baja para que se vea entera */
    background-color: black;
    overflow: hidden;
}

/* Imagen de fondo */
.background-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* No recorta, muestra la imagen completa */
    object-position: center center;
    position: absolute;
    top: 0;
    left: 0;
}

/* Contenido encima de la imagen */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-size: 2rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.content h1 {
    font-size: 3rem;
}

.content p {
    font-size: 1.5rem;
    margin-top: 20px;
}
