.link_container{

    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:10px;
    text-align: center;
  
    
}


.link{

    display:inline-block;
    width: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 15px;
    text-decoration: none !important;
    font-weight: 700;
    box-shadow:0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow  0.5s ease;
    color:#505050;

}

.link:hover{

    
    box-shadow:0px 0px 10px rgba(9, 191, 139, 0.701);

}



.link_h3{

    border-left: 5px solid #009c84;
    padding-left:5px;
    font-size: 16px;

}