@font-face {
    font-family: 'Larken';
    src: url('/assets/fonts/larken-bold.ttf');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'AvantGarde';
    src: url('/assets/fonts/avantgarde-bold.otf');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'AvantGarde';
    src: url('/assets/fonts/avantgarde-book.otf');
    font-weight: 400;
    font-display: swap;
}

body {
    background: #7AB2E0;
    font-family: 'AvantGarde', sans-serif;
    background-image: url('/assets/background.jpg');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center bottom;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content {
    max-width: 1600px;
    width: 100%;
    margin: -60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start;
    padding: 1.5rem;
}

.heading {
    font-size: 1.25rem;
    font-family: 'Larken', serif;
    font-weight: 700;
}

.logo {
    height: 200px;
    width: auto;
    max-width: 80%;
}

.nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 1rem;
}

.nav > a > strong {
    font-weight: 700;
}

.nav > a {
    transition: opacity 0.2s ease-in-out;
}

.nav > a:hover {
    opacity: 0.5;
}

@media (min-width: 768px) {
    .nav,
    .heading {
        padding-left: 225px;
    }
}
