@font-face {
    font-family: 'TitleFont';
    src: url('./albertus-mt-std/AlbertusMTStd.otf?v=3') format('opentype');
}

@font-face {
    font-family: 'BodyFont';
    src: url('./minion-pro/MinionPro-Regular.otf?v=3') format('opentype');
}

.title-container-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    padding-left: 1rem;
    padding-top: 1rem;
    width: 100vw;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.title-container {
    font-family: 'TitleFont', sans-serif;
    color: white;
    display: flex;
    justify-content: flex-start;
    position: relative;
}

img {
    width: min(100px, 15vw);
    filter: invert(100%);
    min-width: 40px;
    display: inline-block;
}

h1 {
    font-size: clamp(40px, 15vw, 100px);
    padding-top: 0.25em;
    padding-left: 0.25em;
    margin: 0;
    text-align: left;
    display: inline-block;
}

body {
    padding: 0;
    margin: 0;
    min-height: 100vh;
    background-color: black;
}

.bg-image {
    background-image: url('./compressed.jpg?v=3');
    background-size: cover;
    background-position: 50% 80%;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: -1;
}

.content-container {
    width: min(720px, 90vw);
    margin: 0 auto;
    padding-top: 75.5vh;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    color: white;
    position: relative;
    box-sizing: border-box;
}

p {
    margin: 1rem 0;
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1.6;
}

h2 {
    font-size: 40px;
    margin-top: 0;
    margin-bottom: 2rem;
    font-family: 'TitleFont', sans-serif;
    color: #ffffff;
}

.text-content {
    font-family: 'BodyFont', sans-serif;
    margin-bottom: 1rem;
}

.site-footer {
    padding: 2rem 1rem;
    text-align: center;
    color: white;
    font-family: 'BodyFont', sans-serif;
    font-size: 0.9rem;
    background: transparent;
}

.site-footer a {
    color: white;
    text-decoration: underline;
    margin: 0 0.25em;
}

.site-footer a:hover {
    text-decoration: none;
}

