        /* Global Styles */
        body {
            margin: 0;
            font-family: 'Patrick Hand', cursive;
            background-color: skyblue;
            color: #333;
            padding-top: 50px;
            padding-bottom: 40px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 50px;
            background-color: darkblue;
            color: gold;
            align-content: center;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            padding: 10px;
            text-shadow: none;
            z-index: 1000;
        }

        /* Main Content */
        main {
            padding: 20px;
            text-align: center;
        }

        main h2 {
            margin-top: 20px;
        }

        /* Footer */
        footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40px;
            text-align: center;
            background-color: darkblue;
            color: #fff;
            padding: 10px;
            z-index: 1000;
        }

        p a{
            text-decoration: underline;
            font-weight: bold;
        }
        a {
            color: #fff;
            text-decoration: none;
        }

        /* Gallery */
        .gallery-container {
            position: relative;
            width: 400px;
            height: 300px;
            margin: 0 auto;
            overflow: hidden;
        }
        header img{
            position: absolute;
            right: 0;
            top: 2px;
            align-items: right;
            width: 10%;
            height: 60px;
            }

        .image-scroll {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .image-scroll img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            font-size: 30px;
            padding: 10px;
            cursor: pointer;
            z-index: 10;
        }

        .arrow-left {
            left: 0;
        }

        .arrow-right {
            right: 0;
        }

        /* Image caption */
        .caption {
            position: relative;
            margin: 0;
            text-align: center;
            font-size: 1.2rem;
            font-family: 'Patrick Hand', cursive;
        }