html, body {
    font-size: clamp(16px, calc(16px + (8 * ((100vw - 1200px) / 720))), 24px);
    margin: 0;
    font-family: "Quicksand", sans-serif;
    line-height: 1.5em;
    background-color: #231009;
}

h1,h2{
    font-family: "Gilda Display", serif;
}

p {
  font-size: 1rem;
}

.page {
    min-height: 100vh;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

.page_bg {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.page_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
}

.page_content {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    gap: 1rem;
}

.site_logo {
    width: 20rem;
}

.page_line img {
    width: 15rem;
}

@media( max-width: 1199px ) {
    .page_bg img {
        object-position: center top;
    }
}

@media( max-width: 767px ) {
    body, html {
        font-size: clamp(16px, calc(16px + (3 * ((100vw - 320px) / 70))), 19px);
    }
    .page_content {
        position: relative;
        z-index: 2;
        width: 100%;
        transform: none;
        padding-block: 100vw 3rem;
    }
    .page_bg {
        height: auto;
    }
    .page_bg::after {
        position: absolute;
        left: 0;
        bottom: 0;
        right: 0;
        content: "";
        z-index: 2;
        background: linear-gradient( to bottom, #23100900, #231009);
        height: 60%;
    }
    .page_bg img {
        object-fit: contain;
        object-position: left top;
    }
    .site_logo {
        width: 15rem;
    }
    p {
        font-size: 0.85rem;
    }
    .fs-3 {
        font-size: 1.25rem !important;
    }
    .page {
        min-height: 100dvh;
    }
    .page_line img {
        width: 12rem;
    }
}