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

.Botones{
    background-color: #53629E;
    width: 90%;
    height: auto;
    margin: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.EspacioLink{
    display: flex;
    flex-direction: column;
    align-items:center ;
    justify-content: center; 
}
.NombreLink{
    font-family: "Roboto Condensed", sans-serif;
    font-size: 10px;
}

.BotonesLink{
    width: 50px;
    transition: transform 0.3s ease;
}
.BotonesLink:hover{
    transform: scale(1.5);
}

@media only screen and (max-width : 600px) {
    .Botones{
        width: 99%;    
    }
    .EspacioLink{
        margin-left: 10px;
        margin-right: 10px;
    }
}