@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Bebas neue';
}

body{
    background: gray;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.contenedor{
    background: linear-gradient(135deg, #0f172a, #1e3a8a);;
    width: 100%;
    max-width: 800px;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

h1{
    text-align: center;
    color: #ffffff;
    margin-bottom: 10px;
    border: #516fb4 solid 3px;
    border-radius: 50px;
    background-color: #0f172a;
}

.descripcion{
    text-decoration-color: #f1f1f1 solid 3px;
    letter-spacing: 2px ;
    text-align: center;
    color: hsl(0, 100%, 98%);
    margin-bottom: 30px;
}

.lista-reglamentos{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #f4f6f9;
    border-left: 5px solid #2563eb;
    border-radius: 10px;
    transition: 0.3s;
}

.card:hover{
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.card span{
    font-size: 17px;
    font-weight: bold;
    color: #333;
}

.card a{
    text-decoration: none;
    background: #2563eb;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    transition: 0.3s;
}

.card a:hover{
    background: #1d4ed8;
}

.btn-volver {
    display: inline-block;
    text-align: center;
    margin-top: 20px;
    color: var(--texto-mutado);
    text-decoration: none;
    font-size: 1.1rem;
    transition: .2s;
}

.btn-volver:hover {
    color: var(--naranja-eet);
}

@media (max-width: 600px){

    .card{
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .card a{
        width: 100%;
    }

}
@media (max-width: 440px){
    h1{
        font-size: 1.2rem;
    }
    .descripcion{
        font-size: 0.8rem;
    }
}