.main-left{
    width: 100%;
}

.main-details{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    min-height: 350px;
}

.staffer{
    display: flex;
    gap: 3%;
    padding: 20px 10px;
    cursor: pointer;
}

.staffer:hover{
    background-color: aliceblue;
}

.staffer img{
    display: flex;
    width: 120px;
    height: 80px;
}

.staff-details{
    display: flex;
    flex-direction: column;
}

.staff-details h3{
    font-size: 1.5rem;
}

.staff-details a{
    display: flex;
    text-decoration: none;
    padding: 5px;
    width: 20%;
    color: white;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background-color: #fdc800;
}

