.maincontent {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: none;
}
.staff-global {
    padding: 2rem;
}

.staff-job {
    font-weight: normal;
    font-style: italic;
}

.staff-bio {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    transform: translateY(100%);
}

.staff-member:hover .staff-bio {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.staff-member p{
line-height: 1.2rem;
}

.staff-member{
    height: 500px;
}