@media screen and (max-width: 599px) {
    .content-container {
        width: 90% !important;
        margin: 40px auto !important;
    }

    .alumni-say-container {
        width: 100% !important;
    }

    a.person-container {
        width: 90% !important;
        margin: 0 auto !important;
        height: fit-content !important;
        margin-bottom: 40px !important;
    }
}

:root {
    --global-web-width: 1170px;
}

.content-container {
    width: var(--global-web-width);
    margin: 80px auto;
}

.alumni-say-container {
    width: var(--global-web-width);
    text-align: center;
    margin-top: 40px;
}

.alumni-say-container h2 {
    font-weight: normal;
    color: black;
}

.alumni-say-container h1 {
    margin-bottom: 40px;
}

.alumni-container {
    display: flex;
    flex-wrap: wrap;
}

a.person-container {
    width: 22%;
    height: 600px;
    margin: 20px 1.5%;
    transition: all 0.3s ease-in-out;
    color: black;
}

a.person-container img {
    width: 100%;
    height: 60%;
    object-fit: cover;
}

a.person-container:hover {
    transform: scale(1.1);
    margin-bottom: 40px;
}

a.person-container p {
    font-weight: normal;
}
