html, 
    body {
            background: none;
            height: 100%;
            width: 100%;
            margin: 0;
            padding: 0;
            overflow: hidden;
           font-family: 'Coming Soon', cursive, sans-serif;
        }
        .header {
            background: transparent;
            text-align: center;
            padding: 20px 0;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
        }
        .dropdown {
            position: relative;
            display: inline-block;
        }
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: rgba(0, 0, 0, 0.6);
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.9);
            z-index: 1;
        }
        .dropdown-content a {
            color: #b0881a;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
        }
        .dropdown-content a:hover {
            background-color: rgba(0, 0, 0, 0.6);
        }
        .dropdown:hover .dropdown-content {
            display: block;
        }
        .title {
            font-size: 2em;
            cursor: pointer;
            color: #82361a;
            text-shadow:
        0 2px 8px rgba(0,0,0,0.7),
        -1px -1px 0 #b0881a,
        1px -1px 0 #b0881a,
        -1px 1px 0 #b0881a,
        1px 1px 0 #b0881a; 
        }
        .images {
            display: flex;
            justify-content: center;
            align-items: stretch;
            height: 100vh;
            width: 100vw;
            margin: 0;
            padding: 0;
            position: relative;
        }
        .image {
            flex: 1 1 0;
            height: 100%;
            display: flex;
            justify-content: right;
            align-items: center;
            overflow: hidden;
            position: relative;
            transition: transform 0.2s cubic-bezier(.4,2,.6,1), box-shadow 0.2s;
            z-index: 1;
        }
        .image:hover {
            transform: scale(1.02);
            z-index: 20;
            box-shadow: 0 8px 40px 8px rgba(0,0,0,0.4);
        }
        .image::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.6);
            box-shadow: 0 0 40px 20px rgba(0,0,0,0.7);
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 5;
            pointer-events: none;
        }
        .image:hover::before {
            opacity: 1;
        }
        .image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .footer-link {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: none;
            color: #b0881a;
            padding: 15px 30px;
            font-size: 1.2em;
            text-decoration: none;
            border-radius: 8px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
            z-index: 10;
            white-space: nowrap;
        }
        .image:hover .footer-link {
            opacity: 1;
            pointer-events: auto;
        }