        body {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 10px;
            font-family: 'Apple Chancery', sans-serif;
            background-color: #DDC7A0;
        }

        #container {
            text-align: center;
            width: 80%;
            margin: 0 auto; /* This centers the container */
            padding: 20px; /* Add padding to the container if desired */
        }

.center-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;

}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Remove extra space below the image */
}

        #image {
            max-width: 100%;
            display: block;
            margin: 0 auto;
        }

        .form {
            text-align: left;
        }

        #photo-credit {
            font-size: 10px;
            text-align: center;
            font-family: sans-serif;
            margin: 2px;
        }

        #site-name {
            text-align: center;
            font-size: 24px;
            font-weight:  bold;
            margin-bottom: 10px;
        }

        #title {
            font-size: 24px;
            margin-top: 30px;
            margin-bottom: 0px;
        }

        #bodytext {
            font-size: 16px;
            margin-top: 30px;
            margin-bottom: 0px;
            font-family: Georgia,sans-serif;
            text-align: left;
            font-weight:  normal;
        }

        #signature {
            font-size: 18px;
            margin-top: 30px;
            margin-bottom: 0px;
            text-align: left;
            padding-left: 30px;
        }

        #menu {
            display: flex;
            justify-content: center;
            margin-top: 10px;
        }

        #menu a {
            text-decoration: none;
            padding: 5px 10px;
            margin: 0 10px;
            background-color: #333;
            color: #fff;
            border-radius: 5px;
            font-family: sans-serif;
        }

        #menu a.active {
            background-color: #a9a9a9;
        }