body {
    background-color: black;
    color: white;
    font-family: 'Chalkduster', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 20px;
}

header img {
    max-width: auto;
    height: auto;
}

.photo-album {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.year {
    margin: 10px;
    text-align: center;
    flex: 1 1 150px; /* Adjust the size here */
}

.year img {
    max-width: 100%;
    height: auto;
    border: 2px solid white;
    width: 150px; /* Set a fixed width for thumbnails */
    height: 150px; /* Set a fixed height for thumbnails */
    object-fit: cover; /* Ensure the image covers the area without distortion */
}

.year span {
    display: block;
    margin-top: 10px;
}

footer {
    text-align: center;
    padding: 20px;
}

.social-links img {
    width: 40px;
    margin: 0 10px;
}

.social-links a {
    display: inline-block;
}