@font-face {
    font-family: "Novela Display";
    src: url(assets/novela-displayregular-webfont.woff);
}
@font-face {
    font-family: "Novela Display Italic";
    src: url(assets/novela-displayitalic-webfont.woff);
}

@media (min-width:768px) {
    body {margin: 0; overflow: auto;}
    .section--top {padding: 1rem;}
    .section--main {padding: 1rem;}
    .section--bottom {padding: 1rem;}
}

body {
    font-family: "Novela Display", 'Times New Roman', Times, serif;
    background-color: #FCAC01;
    color: #1e1e1e;
    font-size: clamp(1.2rem 1.5rem 1.5rem);
    overflow-x: hidden;
    overflow-y: visible;
}

.site {    
    min-height: 100dvh;
    max-width: 1420px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: minmax(0, 1fr);
    z-index: 100;
}

.section--top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 1.5rem;
    padding: 2.5rem;
    @media (max-width:768px) {
        padding: 1rem;
    }
}

.section--main { 
    padding: 2.5rem;
    @media (max-width:768px) {
        padding: 1rem;
    }
}

.trail-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; 
    z-index: -1;
    overflow-x:hidden;
}
.trail-image {
    position: absolute;
    max-height: 300px;
    max-width: 300px;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease, width 1s ease, height 1s ease;
    will-change: transform, opacity, width, height;
}

.section--bottom {
    display: flex;
    flex-direction: row;
    min-height: 5rem;
    padding: 2.5rem;
    @media (max-width:768px) {
        padding: 1rem;
    }
}

.footer-logo {
    max-height: 1.3rem;
    align-self: center;
}

.footer-statement {
    font-family: "Novela Display Italic", 'Times New Roman', Times, serif;
    font-style: italic;
    align-self: center;
    text-align: right;
}


.container {
    display: flex;
    flex-direction: row;
    align-content: start;
    justify-content: space-between;
    width: 100%;
    gap: 0.25rem;
}

.col-left {
    display: block;
    align-items: start;
    width: 62%;
    @media (max-width:768px) {
        width: 100%;
    }
}

.float-left {
    float: left;
}

.logo {
    max-height: 1.3rem;
    margin-right: 1rem;
}

.col-right {
    display: none;
    flex-direction: column;
    align-items: end;
    width: 40%;
}

h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    line-height: 0.8;
    margin: 0;
    padding: 0;
}

.introduction {
    font-size: 1.5rem;
    text-align: start;
    padding: 0;
    margin: 0;
    overflow-wrap: normal;
    word-break: keep-all;
}

a {
    color: #1e1e1e;
    text-decoration: none;    
}

a:link{
    color: #1e1e1e;
    text-decoration-line: none;
    margin: 0;
}

a:hover {
    text-decoration: line-through;
} 

.spacer {
    height: 2rem;
}