html {
        scroll-behavior: smooth;
}
/* Only one stylistic set at a time works */
body {
    font-family: equity_ot_a, serif;
    font-size: 18px;
    font-feature-settings: "ss02" 1;
    min-height: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0 25px 0;
}

.max-width-standard {
    max-width: 625px;
}

.main-content, .mouseprint {
    margin: 0 auto;
    padding: 16px 16px 30px;
}

h1 {
    text-align: left;
}

h2 {
    font-weight: bold;
}

h3 {
    text-align: left;
    font-variant: small-caps;
    font-weight: bold;
    margin-top: 50px;
}

h4 {
    text-align: left;
    font-weight: bold;
    font-size: 20px;
}

.responsive-header {
    width: 100%;
    height: 300px; /* Adjust the height as needed */
    background-image: url('/assets/images/london-eye.jpeg'); /* Your photo's path */
    background-size: cover;
    background-position: center;
    position: relative; /* Needed for the positioning of the pseudo-element */
}

.responsive-header::after {
    content: ''; /* Required for pseudo-elements */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: 1; /* Ensures the overlay is above the background image but below the text */
}

.header-content {
    position: relative; /* Ensures the text is above the overlay */
    z-index: 2; /* Higher than the overlay's z-index */
    color: white; /* Ensures the text is visible against the dark background */
    text-align: center; /* Optional: Centers the text horizontally */
    padding: 16px 16px 30px; /* Optional: Adds some padding around the text */
    max-width: 850px;
    margin: 0 auto;
}

.bold-italic {
    font-weight: bold;
    font-style: italic;
}

.smallcaps {
    font-weight: normal;
    font-variant: small-caps;
}

p {
    font-size: 18px;
    line-height: 1.3;
}

ul {
    list-style-type: square; /* Options are 'disc', 'circle', 'square', 'none' etc. */
    margin-left: 35px; /* Adjusts the indentation of the list */
    padding-left: 0;
}
li {
    margin-bottom: 18px; /* Adds space between list items */
    font-size: 18px;
    line-height: 1.3;
}

.indented-text {
    text-indent: 2em;  /* Indents are twice the current font size */
}

.no-break {
    white-space: nowrap;
}

.flexible-space {
    height: 16px;
}

            /* Button div */
            /* Button div */
            /* Button div */

.button-div {
    text-align: center; /* Centers the button horizontally */
    margin: 100px auto 0 auto;
    padding-bottom: 40px;
}

.topBtn {
    display: inline-block; /* Allows margin auto to work on button */
    border: 2px solid #8e8e8e; /* Solid grey border mimicking pencil lines */
    outline: none; /* Remove outline */
    background-color: #f4f4f4; /* Light grey background for a soft, sketched appearance */
    color: #000000; /* Text color in dark grey */
    cursor: pointer; /* Pointer/hand icon */
    padding: 10px 20px; /* Some padding */
    border-radius: 0; /* Square corners */
    font-size: 16px; /* Text size */
    text-align: center; /* Center the text inside the button */
    margin: 0 auto; /* Centers the button */
    font-family: 'custom-serif', serif;
    font-weight: bold;
}

#topBtn:hover {
    background-color: #ebebeb; /* Slightly darker grey for hover, matching text-box */
}

            /* Responsive adjustments for smaller screens */
            /* Responsive adjustments for smaller screens */
            /* Responsive adjustments for smaller screens */

@media (max-width: 768px) {
    .svg-container {
        max-width: 100px;
        max-height: 100px;
    }
    .indented-text {
        text-indent: 1em;  /* Smaller indent for smaller screens */
    }
    .responsive-header {
        padding-bottom: 16px;
    }
    h1 {
        margin-top: 0;
    }
    .responsive-header {
    height: 200px; /* Adjust the height as needed */
    }
    .button-div {
    margin: 100px auto 0 auto;
    }
}