/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: #e5002b; /* Fondo oscuro */
    color: #ffd700; /* Color de texto amarillo */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

/* Contenedor principal */
.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.content {
    background: #222222; /* Fondo del cuadro */
    padding: 30px;
    border: 3px solid #ffd700; /* Borde amarillo */
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}

/* Icono de advertencia */
.warning-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

/* Encabezado */
h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Párrafo */
p {
    font-size: 1.2em;
    line-height: 1.6;
}

/* Estilos responsivos */
@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }
}

