body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}

.holder {
    text-align: center;
    /* border: 1px solid white; */
    min-width: 300px;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.mainpfp {
    padding: 2rem;
    text-align: center;
    /* border: 1px solid white; */
}

.container {
    padding: 2rem;
    text-align: center;
}

.profile-current img {
    max-width: 300px;
    border: 4px solid white;
    border-radius: 50%;
    margin: 1rem 0;
}

.profile-history .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.profile-history img {
    max-width: 150px;
    border: 2px solid #444;
    border-radius: 8px;
    transition: transform 0.2s;
}

.profile-history img:hover {
    transform: scale(1.05);
}

.section-divider {
    border: none;
    border-top: 1px solid white;
    margin: 2rem 0;
    width: 100%;
}