* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/eot/Satoshi-Regular.eot') format('eot'),
         url('../fonts/woff2/Satoshi-Regular.woff2') format('woff2'),
         url('../fonts/woff/Satoshi-Regular.woff') format('woff'),
         url('../fonts/ttf/Satoshi-Regular.ttf')  format('truetype');
    font-weight: 500;
}
@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/eot/Satoshi-Bold.eot') format('eot'),
         url('../fonts/woff2/Satoshi-Bold.woff2') format('woff2'),
         url('../fonts/woff/Satoshi-Bold.woff') format('woff'),
         url('../fonts/ttf/Satoshi-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/eot/Satoshi-Black.eot') format('eot'),
         url('../fonts/woff2/Satoshi-Black.woff2') format('woff2'),
         url('../fonts/woff/Satoshi-Black.woff') format('woff'),
         url('../fonts/ttf/Satoshi-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
  }

body {
    font-family: 'Satoshi', sans-serif;
    background-color: #1B1D21;
    font-size: 16px;
}

.section-hero {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.hero-wrapper {
    width: 100%;
    max-width: 1012px;
    height: 356px;
    margin: 0 auto;
    padding: 20px;
}

.hero-branding {
    width: 700px;
    margin-bottom: 80px;
}

.hero-branding-title {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 64px;
    color: white;
}

.hero-branding-title .emoji {
    font-family: Helvetica, sans-serif;
}

.hero-contact {
    position: relative;
}

.hero-contact-paragraph {
    width: 200px;
    margin-bottom: 20px;
}

.emoji {
    font-size: 40px;
    margin-right: 16px;
    position: relative;
    top: 6px;
}

.hero-contact-link {
    display: inline-block;
    font-size: 24px;
    color: white;
    cursor: pointer;
    text-decoration: none;
}

.hero-contact-link::after {
    content: '';
    width: 0px;
    height: 1px;
    display: block;
    background: white;
    transition: 300ms;
}

.hero-contact-link:hover::after {
    width: 100%;
}

@media screen and (max-width: 700px) {
    body {
        width: 100vw;
        overflow-x: hidden;
    }
    .section-hero {
        padding: 0 24px;
    }
    .hero-branding {
        margin-bottom: 40px;
    }
    .hero-branding-title {
        font-size: 9vw;
    }
  }