* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-image: url('fondo_briceno.jpg'); /* Reemplaza con tu URL de imagen */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.container {
    text-align: center;
    background: rgba(0, 0, 0, 0.6); /* Fondo oscuro translúcido */
    padding: 40px;
    border-radius: 15px;
    max-width: 90%; /* Limita el ancho en pantallas pequeñas */
}

h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 3s ease-in-out forwards;
}

#coming-soon {
    font-size: 2rem;
    font-weight: 300;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Estilos para pantallas medianas (tabletas) */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    #coming-soon {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 30px;
    }
}

/* Estilos para pantallas pequeñas (teléfonos) */
@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    #coming-soon {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 20px;
        border-radius: 10px;
    }
}