header {
    height: 90vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
}

header .meta,
img.center {
    transform: translateX(-50%);
    left: 50%;
}

header .meta {
    position: absolute;
    top: 10%;
    width: 90vw;
    max-width: 600px;
    text-align: center;
}

.meta h1 {
    font-size: 6vh;
    margin-top: 0px;
}

.meta h2 {
    font-size: 18px;
    margin-bottom: 0;
}

.meta .cta {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.meta .cta button:first-child {
    border-radius: 50px 5px 5px 50px;
    display: flex;
    align-items: center;
    font-size: 20px;
}
.meta .cta button:last-child {
    border-radius: 5px 50px 50px 5px;
    font-size: 20px;
    font-weight: bold;
}

header img {
    position: absolute;
}

img.right,
img.left {
    top: 65%;
    max-width: 500px;
    width: 50vw;
}

img.left {
    right: 50%;
}
img.center {
    top: 55%;
    z-index: 1;
    max-width: 550px;
    width: 55vw;
}
img.right {
    left: 50%;
}

footer {
    margin: 0px;
}

@media (min-width: 640px) {
    header {
        height: 180vh;
    }

    header .meta {
        top: 15%;
    }

    .meta h1 {
        font-size: 8vh;
    }

    img.right,
    img.left {
        top: 60%;
    }
    img.center {
        top: 42%;
    }
}