*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --beige: #fffff7;
    --orange: #f49d16;
}

@font-face {
    font-family: 'Kunath Regular';
    src: url('../assets/Kunath-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html, body {
    height: 100%;
    overflow: hidden;
    background-color: var(--beige);
    color: var(--orange);
    font-family: 'Kunath Regular', sans-serif;
    font-feature-settings: "ss04";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wobble {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.wobble dotlottie-wc {
    position: absolute;
    width: max(100%, 177.78vh);
    height: max(100%, 56.25vw);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo {
    position: fixed;
    top: 0;
    left: 0;
    padding: 1.5rem;
    width: 50vw;
    z-index: 10;
}

.logo svg {
    width: 100%;
}

.logo .st0 {
    fill: var(--orange);
}

.claim {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    font-size: 2.2rem;
    letter-spacing: 0.015em;
    line-height: 1.1;
    color: var(--orange);
    text-align: left;
    width: calc(50% - 3rem);
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 10;
}

footer p,
footer a {
    color: var(--orange);
    text-decoration: none;
    font-size: 2.2rem;
    letter-spacing: 0.015em;
    line-height: 1.1;
}

footer a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 767px) {
.logo {
        width: 100vw;
    }

    .claim {
        top: calc(3rem + (100vw - 3rem) / 1.71);
        right: 1.5rem;
        left: 1.5rem;
        width: auto;
        font-size: 1.7rem;
        letter-spacing: 0.025em;
        line-height: 1.25;
    }

    footer {
        flex-direction: column;
        gap: 0.4rem;
        align-items: flex-start;
    }

    footer p,
    footer a {
        font-size: 1.7rem;
        letter-spacing: 0.025em;
        line-height: 1.25;
    }
}
