/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fondo oscuro y texto claro */
body {
    background-color: #121212;
    color: #f0f0f0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    padding: 20px;
}

/* Título principal */
h1 {
    font-size: 2.5rem;
    color: #ff3c3c;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Subtítulos */
h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 10px;
    border-left: 4px solid #ff3c3c;
    padding-left: 10px;
}

/* Párrafos */
p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #d0d0d0;
}

/* Listas */
ul {
    margin-left: 20px;
    margin-bottom: 20px;
}
ul li {
    margin-bottom: 8px;
}
/* Imagenes */
img{
    border-radius: 10px;
    transition: 0.5s;
}
img:hover{
    transition: 0.5s;
    transform: scale(1.05);
}
/* Botón de volver o redirección */
.button-back {
    display: inline-block;
    background-color: #ff3c3c;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.button-back:hover {
    background-color: #e62e2e;
}

/* Separador visual */
hr {
    border: none;
    height: 1px;
    background-color: #333;
    margin: 30px 0;
}