:root {
    --black: #141516;
    --white: #ffffff;
    --brand-primary: #15a5e8;
    --brand-secondary: #6a67de;
}

html {
    font-family: 'Inter', sans-serif;;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    letter-spacing: -0.2px;
    color: var(--white);
    min-height: 100%;
    background-color: var(--black);
}

body {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    min-height: 100vh;
    text-align: center;
}

h1 {
    font-family: 'Inter', sans-serif;;
    font-weight: 500;
    font-style: normal;
    letter-spacing: -3.6px;
    font-size: 8rem;
    color: var(--white);
    max-width: 64rem;
    margin: 80px 0 16px;
}

h2 {
    font-weight: 500;
    letter-spacing: -0.8px;
    font-size: 1.6rem;
    max-width: 56rem;
}

video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: .6;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    margin: 16px;
    z-index: 1;
    opacity: .88;
}

footer {
    padding: 64px 16px 16px;
    z-index: 1;
    opacity: .88;
}

footer p {
    margin-bottom: 0;
}

footer a {
    color: var(--white);
    text-decoration: none;
    border-bottom: none;
    transition: all .3s ease;
}

footer a:hover {
    color: var(--brand-primary);
    border-bottom: var(--brand-secondary) 1px dotted;
}

.faded {
    color: rgba(255, 255, 255, .72);
    margin-top: 3rem;
}

.btn {
    display: block;
    width: fit-content;
    margin: 16px auto;
    color: var(--white);
    text-decoration: none;
    font-size: 1.3rem;
    padding: 16px 32px;
    border: 2px solid var(--brand-primary);
    border-radius: 500px;
    transition: all .3s ease;
}

.btn:hover {
    border-color: rgba(255,255,255,.1);
    background: var(--brand-secondary);
}

@media screen and (max-width: 726px) {
    h1 {
        font-size: 5.2rem;
    }
  }

  @media screen and (max-width: 480px) {
    h1 {
        font-size: 4rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
  }