/* styles.css */
html, body {
    height: 100vh; /* Ensures the page is always at least the viewport height */
    display: flex;
    flex-direction: column;
    overscroll-behavior: none;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #000;
    line-height: 1.6;
    background-color: #fff;
    width: 30rem;
    max-width: 30rem;
    margin: 0 auto;
    padding: 2rem;
}

main {
    flex-grow: 1; /* Makes sure main content takes up the available space */
}

.image-right {
    display: block;
    margin-left: auto;
    margin-right: 0; /* Ensures full alignment to the right */
}

h1,
h2 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    margin-top: 0;
    color: #000;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

p {
    margin: 1rem 0;
    font-weight: 400;
}

a {
    color: #000;
    text-decoration: underline;
}

a:hover {
    color: #555;
}

footer {
    margin-top: auto; /* Pushes the footer to the bottom */
    padding-top: 1rem;
    border-top: 1px solid #ddd;
    text-align: center;
}

footer a {
    margin: 0 0.5rem;
    font-size: 0.9rem;
    text-decoration: none;
    padding-bottom: 2rem; /* Adds extra space below the footer */
    color: #000;
}

footer a:hover {
    color: #555;
}
