#all {
    border: 2px solid #3c3c3c;         /* darker border */
    border-radius: 20px;               /* slightly reduced curve */
    position: absolute;
    width: 1000px;
    height: 1200px;
    background-color: #f7f8ff;         /* new light-blue background */
    box-shadow: 8px 8px 14px #666;     /* stronger shadow */
}

/* CHANGED: New font, color, size, and updated position */
#headline {
    font-size: 3.4em;                   /* slightly larger text */
    font-family: Georgia, serif;        /* changed from Trebuchet to Georgia */
    color: #4450a0;                     /* new blue headline color */
    text-align: center;
    position: absolute;
    top: 30px;                          /* updated position */
    left: 310px;                        /* updated position */
    text-decoration: underline;
}

/* Thumbnail container adjustments */
#thumbnails {
    position: absolute;
    top: 180px;
    left: 40px;                         /* CHANGED: moved left slightly */
    width: 170px;                       /* CHANGED: slightly wider area */
    height: auto;
    opacity: 0.6;                       /* CHANGED: stronger transparency */
}

/* CHANGED: Added spacing between items */
#thumbnails li {
    list-style: none;
    margin-bottom: 10px;                /* NEW spacing */
}

#thumbnails:hover {
    cursor: pointer;
    opacity: 1;
    transform: scale(1.02);             /* CHANGED: added hover zoom effect */
}

/* Thumbnail images */
.smallimg {
    width: 110px;                       /* CHANGED: larger thumbnails */
    margin: 10px;                       /* CHANGED: increased spacing around thumbnails */
    border-radius: 10px;                /* CHANGED: added rounded corners */
    transition: 0.2s ease;              /* NEW: smooth hover transition */
}

/* Large image area */
#largearea {
    position: absolute;
    top: 150px;                         /* CHANGED: moved slightly downward */
    left: 320px;                        /* CHANGED: moved slightly right */
    width: 650px;
}

/* CHANGED: Added border, increased roundness, adjusted margins */
#mainphoto {
    width: 650px;
    float: left;
    margin: 40px 15px 40px 0;           /* CHANGED: reduced spacing above/below */
    border: 3px solid #999;             /* NEW border around large image */
    border-radius: 12px;                /* NEW rounded corners */
}

/* Caption styling */
#caption {
    font-size: 20px;                    /* CHANGED: font larger */
    font-family: Tahoma, sans-serif;    /* CHANGED: new font family */
    color: #333;                        /* CHANGED: slightly darker */
    text-align: center;
    position: absolute;
    top: 135px;
    left: 300px;
    width: 650px;
    padding-top: 10px;   
}
    
    /* CHANGED: extra spacing above caption */