@font-face {
    font-family: 'OrticaBold';
    src:  url('../fonts/OrticaAngular-Bold.woff2') format('woff2'),
          url('../fonts/OrticaAngular-Bold.woff') format('woff');
}

@font-face {
    font-family: 'OrticaLight';
    src:  url('../fonts/OrticaLinear-Light.woff2') format('woff2'),
          url('../fonts/OrticaLinear-Light.woff') format('woff');
}

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

::-webkit-scrollbar {
    display: none;
    -webkit-appearance: none;
}

body {
    background: #000;
    color: #fff;
    font-family: 'OrticaLight', sans-serif;
    font-size: 6.6vw;
    line-height: 8.8vw;
}

.wrapper {
    position: relative;
    width: 100%;
    padding: 20vw 4vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 4vw 0;
}

h1 {
    font-size: inherit;
    font-weight: inherit;
}

.container:last-child p {
    margin-bottom: 8vw;
}

.container:last-child p:first-child {
    padding-right: 2vw;
}

.container:last-child p:last-child {
    margin-bottom: 0;
}

.underline {
    text-decoration: underline;
    text-decoration-thickness: 0.35vw;
    text-underline-offset: 0.4vw;
    text-decoration-skip-ink: none;
}

a {
    all: unset;
}

@media (min-width: 1025px) {
    body {
        font-size: 2.5vw;
        line-height: 3.33vw;
    }

    .wrapper {
        flex-direction: row;
        padding: 0;
    }

    .container {
        width: 50%;
        padding: 4vw 6.5vw;
    }

    .container:first-child {
        position: relative;
        align-self: baseline;
    }

    .container:first-child .inner-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 50%;
        padding: 4vw 6.5vw
    }

    .container:last-child p:first-child {
        padding-right: 0;
    }

    .container:last-child p {
        margin-bottom: 3vw;
    }

    .underline {
        text-decoration: underline;
        text-decoration-thickness: 0.11vw;
        text-underline-offset: 0.18vw;
    }
}