/* General styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Profile container */
.profile-container {
    max-width: 600px;
    margin: 20px auto;
    background: #841080; /* Shorter notation */
    padding-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Profile header */
.profile-header {
    height: 400px; /* Reduced height for better visual balance */
    background: url("../css/images/bigperson.png") center/cover; /* Combined background shorthand */
    position: relative;
}

/* Small images container */
.small-images-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; /* Increased gap for better separation */
    padding: 20px;
}

/* Small image */
.small-image {
    width: 100%; /* Full width for better responsiveness */
    height: 200px; /* Reduced height for better visual balance */
    background: center/cover no-repeat; /* Combined background shorthand */
    border-radius: 5px;
    cursor: pointer;
}