.lab_container{
    width: 90%;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.lab_item{
    border: 2px solid #e2e2e2;
    width: 30%;
    height:220px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}
.lab_item span{
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    padding: 10px;
}
.lab_item p a{
    padding: 10px 20px;
    color: black;
    font-size: 16px;
}
.lab_item p a:hover{
    color: orange;
}