:root {
    --bg-color: #FCFCF5;
    --text-color: #333;
}

body {
    margin: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
}

a,
a:visited {
    color: var(--text-color);
    text-decoration: underline;
}

a:hover {
    color: var(--text-color);
}

h1 {
    font-family: 'Roboto Serif', Georgia, Cambria, "Times New Roman", Times, serif;
    font-weight: 400;
    font-size: 2.5rem;
    margin: 0;
}

.wrapper {
    display: flex;
    justify-content: center;
}

.masked-image {
    position: relative;
    aspect-ratio: 1392 / 752;
    min-height: 22rem;
    max-height: 38rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    max-width: min(100%, 1392px);
    margin: auto;
}

.masked-image img {
    height: 100%;
    mask-image: url('mask.png');
    mask-size: cover;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url('mask.png');
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

section.content {
    max-width: 700px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 3rem 1.5rem 1.5rem 1.5rem;
}

.text-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

footer {
    max-width: 700px;
    margin: auto;
    margin-bottom: 2rem;
    padding: 0 1.5rem;
}

hr {
    max-width: 700px;
    margin: 2rem auto;
    border: none;
    border-top: 1px solid #ddd;
}