<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

.links-wrapper{
    display: flex;
    justify-content: space-around;
    background: #eaeaea;
    padding: 30px 0px;


    width: 100%;
    height: fit-content;
    margin: auto;

}

.links-wrapper a{
    transition: all 0.2s ease;
    display: block;
    -webkit-box-shadow: 0px 8px 19px -17px #000;
    -moz-box-shadow: 0px 8px 19px -17px #000;
    box-shadow: 0px 8px 19px -17px #000;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    text-align: center;
}

.links-wrapper a:hover{
    transition: all 0.2s ease;

}

.cav:hover{
    background: #ffc107;
}
.bcgi:hover{
    background: #ff9800;
}
.bims:hover{
    background: #ec3237;
}

.links-wrapper a img{
    max-width: 100%;
    height: auto;
}


@media screen and (max-width : 991px){
    
    h1{
    text-align: center;
}

    .links-wrapper{
        display: block;
        padding: 30px 0px;

    }

    .links-wrapper a{
        margin: 20px 20px;   
    }


}</pre></body></html>