:root {
    --black: #161718;
    --gray: #666;
    --brown: #99907F;
    --cream: #F9F5EF;
    --rosegold: #D28E7F;
}

html {
    font-family: "halyard-text", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--black);
    min-height: 100%;
    background-color: var(--cream);
}

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: "loretta-display", serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 10px;
    font-size: 8rem;
    max-width: 64rem;
    margin: 80px 0 24px;
}

h2 {
    font-family: "loretta-display", serif;
    font-weight: 400;
    font-size: 2rem;
    max-width: 56rem;
    margin: 16px auto;
}

p {
    font-size: 1.125rem;
    margin: 0;
}

video {
    min-width: 100vw;
    min-height: 100vh;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    gap: 16px;
    z-index: 1;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

iframe {
    position: absolute;
    top: 0;
    left: 0;
}

.iframe-container {
    padding-bottom:56.25%; 
    position:relative; 
    display:block; 
    width: 98%;
    max-width: 1920px; 
}

main img {
    margin: 0 24px;
}

main div {
    margin: 0 24px;
}

.btn-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: 16px;
    margin-top: 16px;
}

.btn {
    color: var(--black);
    text-decoration: none;
    padding: 15px 24px 16px;
    border: 1px solid var(--brown);
    border-radius: 500px;
    transition: all .3s ease;
}

.btn:hover {
    background-color: var(--brown);
    color: var(--cream);
}

aside {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 11px;
    margin: 64px 24px 0;
    z-index: 1;
    max-width: 100%;
}

aside img {
    max-height: 11px;
}

.logo-head {
    margin: 32px 24px;
}

.logo-head img {
    max-height: 96px;
}

footer {
    z-index: 1;
    color: var(--gray);
    max-width: 100%;
}

footer p {
    font-size: .875rem;
    margin: 24px;
}


  @media screen and (max-width: 600px) {
    aside {
        flex-direction: column;
        margin: 48px 24px 0;
    }

    video {
        left: -50%;
    }

    main p {
        white-space: pre-line; /* collapse WS, preserve LB */
    }

  }