html {
    background-color: #f2f2f2;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding-bottom: 120px;
    text-align: center;
    background-color: #f2f2f2;
}

.menu-button {
    position: fixed;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
    padding: 10px;
}

.menu-button .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: 0.3s;
    display: block;
}

.menu-dropdown {
    position: fixed;
    top: 60px;
    right: 20px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 200px;
    display: none;
    z-index: 999;
}

.menu-dropdown.show {
    display: block;
}

.menu-dropdown a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.menu-dropdown a:last-child {
    border-bottom: none;
}

.menu-dropdown a:hover {
    background-color: #f2f2f2;
}

.content {
    max-width: 800px;
    margin: 80px auto 20px;
    padding: 20px;
    text-align: left;
}

.content + .content {
    margin-top: 20px;
}

.content h1 {
    text-align: center;
    color: #333;
}

.content p {
    line-height: 1.6;
    margin-bottom: 1.2em;
    color: #333;
}

.content p:last-child {
    margin-bottom: 0;
}

.content p em {
    font-style: italic;
    color: #555;
}

.image-container {
    margin: 20px auto;
    max-width: 70%;
    text-align: center;
    position: relative;
}

.image-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.image-container-tall img {
    height: 75vh;
    width: auto;
    object-fit: contain;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #ffffff;
    text-align: center;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    font-size: 1.1em;
    font-weight: 500;
}

.disclaimer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000000;
    padding: 15px 20px;
    font-size: 0.75em;
    color: #ffffff;
    line-height: 1.5;
    text-align: center;
    border-top: 1px solid #ddd;
}

.disclaimer p {
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .image-container {
        max-width: 100%;
    }
    .disclaimer {
        font-size: 0.7em;
        padding: 12px 15px;
    }
    body {
        padding-bottom: 140px;
    }
}

