﻿/* Eliminamos márgenes por defecto y aseguramos el alto total */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Contenedor principal con la imagen de fondo */
.background-container {
    /* Ruta de la imagen */
    background-image: url('/images/logo.jpg');
    /* Ajustes de fondo para que sea responsive */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* Centrado absoluto usando Flexbox */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Estilos del texto */
.content h1 {
    color: white;
    font-size: clamp(3rem, 10vw, 6rem); /* Tamaño responsivo fluido */
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 0;
    margin-top: 60%;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}
