.profile {
    margin: 100px 0;
    gap: 20px;
}
.profile-picture {
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile-picture img {
    background-color: #000000;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
}
.text {
    text-align: center;
}
.text p {
    font-size: 1.2em;
    font-weight: 600;
}
@media(max-width: 500px) {
    .text p {
        font-size: 4vw;
    }
    .profile-picture img {
        width: 40vw;
        height: 40vw;
    }
}
.images {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}
@media(max-width: 800px) {
    .images {
        grid-template-columns: 1fr 1fr;
    }
}
.images img {
    width: 100%;
    cursor: pointer;
}