        body {
            background: url('https://hfo301.com/tavern.webp') no-repeat center center fixed;
            background-size: cover;
            font-family: 'Roboto', serif;
            color: #fff;
            text-align: center;
            height: 134vh;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        
        .container {
            background: rgba(0, 0, 0, 0.7);
            padding: 5px;
            border-radius: 10px;
            /*display: inline-block;*/
        }
        
       .gallery {
            text-align: center;
            margin-top: 20px;
            width: 80%;
            max-width: 600px;
            position: relative;
        }
        .gallery-container {
            display: flex;
            overflow: hidden;
            position: relative;
            width: 100%;
        }
        .gallery-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
            display: none;
        }
        .gallery-container img.active {
            display: block;
        }
        .gallery-controls {
            display: flex;
            justify-content: space-between;
            position: absolute;
            top: 50%;
            width: 100%;
            transform: translateY(-50%);
        }
        .gallery-controls button {
            background: rgba(0, 0, 0, 0.7);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
        }
        
        h1 {
            font-size: 36px;
            text-shadow: 2px 2px 4px #000;
            text-stroke: 1px #FFFFFF;
        }
        
        h2 {
            font-size: 28px;
            text-shadow: 2px 2px 4px #000;
            text-stroke: 1px #FFFFFF;
        }
        
        p {
            font-size: 20px;
        }
        
        .btn {
            background: #8B4513;
            padding: 10px 20px;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            display: inline-block;
            margin-top: 20px;
        }
        
        .btn:hover {
            background: #A0522D;
        }
        
        figure {
          text-align: center;
          margin: 20px 0;
        }
        
        figcaption {
          font-size: 14px;
          color: #555;
          margin-top: 5px;
        }