html {
    font-family: Arial, Helvetica, sans-serif;
}
body {
    background-color: rgb(123, 167, 137);
    margin: 0;
    padding: 20px; 
}
h1 {
    color: rgb(83, 54, 26);
    margin: 0;
}

.important {
    background-color: rgba(225, 255, 196, 0.801);
    padding: 1em;
    text-align: center; 
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Nuevo contenedor flex que evita las colisiones */
.contenedor-principal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
}

.anomal {
    border-radius: 5px;
    border-left: solid rgb(0, 0, 66);
    padding: 10px;
    background-color: rgb(158, 219, 199); /* Opcional: fondo igual a la caja si lo deseas */
    
    /* Control estricto del tamaño de la imagen para evitar colisiones */
    width: 100%;
    max-width: 300px; 
    height: auto;
    object-fit: cover;
    box-sizing: border-box;
    user-select:none;
    pointer-events: none;
}

.link {
    background-color: rgb(158, 219, 199);
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 900;
    padding: 15px 10px;
    border-radius: 5px;
    border-left: solid rgb(7, 7, 59);
    margin-bottom: 10px;
    margin-top: 20px; 
    max-width: 432px; /* Alinea el ancho máximo con el de la caja de contenido */
    margin-left: auto;
    margin-right: auto;
}

a {
    color: rgb(6, 82, 6);
    text-decoration: none; 
}
.button {
    background: none;
    border: none;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: large;
    cursor: pointer; 
}

.button:hover {
    background-color: rgb(123, 167, 137);
    border-radius: 5px;
}
