@font-face {
    font-family: Helblack;
    src: url('../fonts/HelveticaNowText-ExtraBold.ttf');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Inter;
    src: url('../fonts/InterTight-VariableFont_wght.ttf');
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #e9e3dd;
    --text: #222;
    --muted: #9e9a98;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: Inter;
    background: white;
    color: var(--text);
    
}

.hero-wrap {
    position: relative;
    max-width: 1180px;
    margin: 48px auto;
    overflow: hidden;
}

.hero-image {
    width: 250%;
    height: auto;
    display: block;
    margin-left: -300px;
    margin-top: -100px;
}

.overlay {
    position: absolute;
    top: 46%;
    right: 25%;
    transform: translateY(-50%);
    text-align: left;
    color: var(--text);
}

.logo {
    margin: 0 0 6px 0;
    font-family: Helblack;
    font-weight: 800;
    font-size: 100px;
}

.tag {
    margin: 0 0 0 0;
    margin-top: -35px;
    margin-left: 4px;
    font-size: 23px;
    font-weight: 200;
    color: #000000;
    letter-spacing: 2.4px;
}


.pill:hover,
.pill:focus {
    background: #f9f9f9;
    color: var(--text);
}

.coming {
    margin: 0 0 0 0;
    margin-top: 25px;
    margin-left: 4px;
    font-size: 23px;
    font-weight: 200;
    color: #ffffff;
    letter-spacing: 2.4px;
}

.pill {
    display: inline-block;
    padding: 4px 25px;
    background: white;
    border-radius: 999px;
    color: #000000;
    text-decoration: none;
    font-weight: 200;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    font-size: 11px;
    margin-top: 6px;
    margin-left: 4px;
}

@media (max-width:1500px) {
    .overlay {
        right: 20%;
    }
}

@media (max-width:1130px) {
    .overlay {
        right: 15%;
    }
}

@media (max-width:1000px) {
    .logo {
        font-size: 70px;
    }

    .tag {
        margin-top: -25px;
        margin-left: 2px;
        font-size: 14.8px;
    }

    .coming {
        margin-top: 20px;
        margin-left: 2px;
        font-size: 14.8px;
    }

    .pill {
        display: inline-block;
        padding: 4px 25px;
        background: white;
        border-radius: 999px;
        color: #000000;
        text-decoration: none;
        font-weight: 200;
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
        font-size: 11px;
        margin-top: 6px;
        margin-left: 2px;
    }
}

@media (max-width:500px) {
    .hero-image {
        margin-left: -200px;
        margin-top: -100px;
        min-height: 500px;
    }
}

@media (max-width:600px){
    .hero-image{
        filter: blur(60px);
    }

    .overlay{
        right:30%;
    }
}

@media (max-width:500px){

    .overlay{
        right:25%;
    }
}

@media (max-width:400px){

    .overlay{
        right:20%;
    }
}


@media (min-width:600px) {
    .hero-wrap {
        max-width: none;
        width: 100vw;
        height: 100vh;
        margin: 0;
        position: relative;
        overflow: hidden;
    }

    .hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-left: 0px;
        margin-top: 0px;
    }
}