.content {
    max-width: 100%;
    padding: 0 100px;
    word-break: break-word;
    margin-top: 40px;
    margin-bottom: 50px;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
}

.main-title {
    margin-top: 60px;
}

.members-container {
    display: flex;
    justify-content: center;
    padding: 100px;
    gap: 100px;
    flex-wrap: wrap;
}

@media screen and (max-width: 700px) {
    .content {
        font-size: 16px;
    }
}

@media screen and (max-width: 500px) {
    .content, .main-title {
        padding: 0 30px;
    }
}