.padel {
    background-color: blue;
    color: white;
    border: none;
    height: 35px;
}
.padel:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

.tenis {
    background-color: green;
    color: white;
    border: none;
    height: 35px;
}
.tenis:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

.futbol {
    background-color: rgb(53, 168, 53);
    color: white;
    border: none;
    height: 35px;
    justify-content: center;
}
.futbol:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

.pista {
    color:white;
    background-color: brown;
    border: none;
    height: 35px;
}
.pista:hover {
    transform: scale(1.1);
    transition: 0.3s;
}
