
html, body { height: 100% }

body {

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    margin: 0;
    background-color: #000;
    color: #fff;
    font-family: 'Bricolage Grotesque', sans-serif;
}

a {
    color: inherit;
}

video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: .25;
    pointer-events: none;
}

header {
    
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem;

    .tmp {
        border: 2px solid #f00;
    }

    img {
        height: 20rem;
        margin: -8rem;
    }

    h1 {
        margin: 0;
        font-family: 'Young Serif', serif;
    }

}

main {

    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 2rem;

    margin: 3rem;

    h2 {
        text-align: center;
        font-family: 'Young Serif', serif;
        margin: 0;
        font-size: min(6rem, 10vw);
        letter-spacing: -.2rem;
        line-height: 1em;
        max-width: 1000px;
    }

    .btn {
        text-decoration: none;
        font-size: 1.5rem;
        background-image: linear-gradient(#fff4, #fff0);
        background-color: #e63264;
        padding: 1rem 2rem;
        border-radius: 1rem;
        border: 1px solid #fff8;
    }

    p {
        margin: 0;
        font-size: 1.1rem;
        text-align: justify;
        max-width: 500px;
        color: #fff8;
        a { color: #fff }
    }

}

footer {

    display: flex;
    justify-content: space-between;
    gap: 1rem;

    padding: 1rem;
    opacity: .5;
}