.profiles-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.profile-item {
    width: 20%;
    text-align: center;
}

.profile-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0px 0px 6px rgba(140,140,140,0.7);
}

.profile-name {
    color: #040303;
    font-size: 14px;
}

@media (min-width: 1200px) {
    .profile-item {
        width: 16.66%;
        box-sizing: border-box;
    }
}

@media (max-width: 1200px) and (min-width: 900px) {
    .profile-item {
        width: 20%;
        box-sizing: border-box;
    }
}

@media (max-width: 900px) and (min-width: 600px) {
    .profile-item {
        width: 33.33%;
        box-sizing: border-box;
    }
}

@media (max-width: 600px) {
    .profile-item {
        width: 100%;
        box-sizing: border-box;
    }
}

body {
    margin: 0;
    padding: 0;
}