@font-face {
    font-family: 'ButlerLight';
        src: url('/fonts/butler-light.woff') format('woff'),
             url('/fonts/butler-light.woff2') format('woff2');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
}

@font-face {
    font-family: 'ButlerRegular';
        src: url('/fonts/butler-regular.woff') format('woff'),
             url('/fonts/butler-regular.woff2') format('woff2');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
}

@font-face {
    font-family: 'ButlerMedium';
        src: url('/fonts/butler-medium.woff') format('woff'),
             url('/fonts/butler-medium.woff2') format('woff2');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
}

@font-face {
    font-family: 'SyneRegular';
        src: url('/fonts/syne-regular.woff') format('woff'),
             url('/fonts/syne-regular.woff2') format('woff2');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
}

:root {
    --text-color: #f5eff3;
    --bg-color: #110d13;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overscroll-behavior: none;
    background: #240303;
    color: #fdeced;
    padding: 0;
    margin: 0;
}

svg {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.intro__header h1 {
    font-family: 'Syne', sans-serif;
    font-size: 3.3vw;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    text-align: center;
    padding: 3rem 0 2rem;
    margin: 0;
}

.intro__content h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2.2vw;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.intro__content {
    display: flex;
    justify-content: flex-start;
    position: relative;
    margin-top: 0;
    z-index: 11;
}

.intro__content .intro__content--left { 
    width: 40vw;
    margin-left: 7vw;
}

.intro__content .intro__content--left p {
    font-family: 'ButlerLight', serif;
    font-size: 1.4rem;
    letter-spacing: .025rem;
    margin-top: 0;
}

.intro__content .intro__content--right {
    width: 40vw;
    position: fixed;
    right: 7%;
    top: 0;
}

.intro__content .intro__content--right img {
    width: 100%;
}

@media (max-width: 768px) {
    .intro__content {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        margin-top: 20vw;
    }
    .intro__content .intro__content--right {
        width: 60vw;
        position: relative;
        top: unset;
        right: unset;
    }
    .intro__header h1 {
        font-size: 6vw;
        padding: 2rem 0;
    }
    .intro__content .intro__content--left {
        width: 70vw;
        margin-left: unset;
    }
    .intro__content .intro__content--left p {
        font-size: 1.1rem;
        letter-spacing: .044rem;
        text-align: center;
    }
    .intro__content h2 {
        font-size: 1.25rem;
        margin: 4rem 0;
    }
}



