body {
    background-color: #fdf4e3; /* Light yellow */
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Marker Felt', sans-serif;
    color: #8B4513; /* Brown */
    text-align: center;
}

h1 {
    color: #8B4513; /* Brown */
    text-shadow: -1px -1px 0 #ffc0cb, 1px -1px 0 #ffc0cb, -1px 1px 0 #ffc0cb, 1px 1px 0 #ffc0cb; /* Pink contour */
    margin-top: 20px;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.image-frame {
    background-color: #fff;
    border: 10px solid #d81b60; /* Pink */
    border-radius: 15px;
    padding: 15px;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.2);
    transform: rotate(-3deg);
    transition: transform 0.2s;
}

.image-frame:nth-child(even) {
    transform: rotate(3deg);
}

.image-frame:hover {
    transform: rotate(0) scale(1.05);
}

.image-frame img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #8B4513; /* Brown */
}
