.title {
    color: black;
    margin-top: 0px;
}

main {
    padding: 40px 10%;
}

.red-line {
    width: 58px;
    height: 5px;
    background-color: #BB1A21;
    margin: -10px 0 25px 0;
}

.paragraph {
    color: #222222;
    text-align: justify;
}

.president-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding-top: 52px;

    .right {
        border-radius: 500px;
            display: flex;
            align-items: center;
            justify-content: center;

        .image-container {
            border-radius: 500px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            .image-div {
                border-radius: 500px;
                width: 350px;
                height: 350px;
            }
        }
    }
}

@media (max-width: 480px) {
    .president-container {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 64px;
        width: 100%;
        padding: 0;
        margin: 0;

        .right,
        .left {
            width: 100%;
        }
    }
}

.left {
    width: 59%;
}

.right {
    width: 35%;
}

.image-container {
    display: flex;
    flex-direction: column;

    color: #000000;
    text-align: center;

    .image-div {
        overflow: hidden;
        background-color: aqua;
        border-radius: 20px;
    }

    .image {
        transition: all 0.2s;
        width: 100%;
    }

    .image:hover {
        scale: 1.1;
    }
}

.space {
    height: 37px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.container>.item {
    flex: 0 1 45%;
    margin: 10px;
}

.item {
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    .round-image {
        height: 300px;
        width: 300px;
        border-radius: 50%;
        filter: grayscale(100%);
        transition: all 0.3s ease;
    }

    .round-image:hover {
        filter: none;
        transform: scale(1.05);
    }

    .name {
        color: #000000;
    }

    .honorific-title {
        color: #D80027;
    }

    .description {
        color: #000000;
        text-align: center;
    }
}