html {
    background: linear-gradient(-40deg, rgba(0,57,116) 10%, rgba(144,191,68) 130%);
    background-size: cover;
    background-repeat: no-repeat;
    
}
body {
   
    font-family: 'Baloo 2','Lato', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
 
}
h1 {
    font-family: 'Baloo 2';
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
    width: 80%;
    line-height: 1.2;
}
.container {
    max-width: 600px;
    margin: 0 auto;
}

h5 {
    font-family: 'Baloo 2';
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.5em;
    color:  #fff;
}

.button-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

button {
    padding: 15px;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    width: 100%;
    transition: background-color 0.3s ease;
}

.groupal {
    background-color:  rgba(0,57,116) ;
    color: #fff;
}

.groupal:hover {
    background-color: #0056b3;
}

.individual {
    background-color:#3d7160;
    color: #fff;
}

.individual:hover {
    background-color:#0056b3;
}

.arr {
    display: block;    /* Convierte la imagen en un bloque para que acepte márgenes automáticos */
    margin: 0 auto;    /* Centra la imagen horizontalmente */
    width: 30%;
    height: auto;      /* Mantiene la proporción original de la imagen */
}

.izq {
    float: right;
    width:30%;
    height: auto;
    margin-right: 20px;
    margin-bottom: 30px;
  }


/* Media query for mobile responsiveness */
@media (max-width: 600px) {
    button {
        font-size: 1em;
        padding: 12px;
    }
}

