/* Estilos generales */
body {
    margin: 0;
    padding: 20px;
    background-color: #000000;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    box-sizing: border-box;
}

/* Título H1 con efecto Ámbar Neón */
h1 {
    color: #FFBF00; /* Color Ámbar */
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    /* Efecto Neón */
    text-shadow: 
        0 0 5px #FFBF00,
        0 0 10px #FFBF00,
        0 0 100px #FFBF00,
        0 0 100px #FF8C00;
}

/* Contenedor de imagen responsiva */
.img-container {
    width: 100%;
    max-width: 500px;
    margin-top: 20px;
}

img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 191, 0, 0.2);
}

/* Media Query para móviles */
@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
    }
}