html {
    height: 100;
}
#panel_resa {
    margin-top: min(16vw, 84px);
    width: 100%;
    height: calc(100vh - 84px);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(max(320px, 100% / 2), 1fr));
}
#panel_resa .column {
    flex: 1 0;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
}
#panel_resa .column .panel_image {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    background-size: cover;
    filter: brightness(80%);
    transition: all 200ms ease-in-out;
}
#panel_resa .column .panel_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
#panel_resa .column .panel_content h2 {
    color: #ffffff;
    font-size: clamp(3rem, 5vw, 4rem);
}
#panel_resa .column .panel_content .panel_button {
    width: fit-content;
    height: fit-content;
    padding: 0.5rem 1rem;
    background-color: #000000;
    color: #FFFFFF;
    font-weight: 500;
    border-radius: 60px;
}
#panel_resa .column:hover .panel_image {
    transform: scale(1.1);
    filter: brightness(95%);
}
#panel_resa .column.aquatique:hover .panel_button {
    background-color: #55ADB4;
    border-color: #55ADB4;
}
#panel_resa .column.fitness:hover .panel_button {
    background-color: #a21c1a;
    border-color: #a21c1a;
}
#panel_resa .column.padel:hover .panel_button {
    background-color: #17484C;
    border-color: #17484C;
}
#panel_resa .column.escalade:hover .panel_button {
    background-color: #F3A4BA;
    border-color: #F3A4BA;
}
