#cover-container {
    z-index: 5;
    transition: opacity 1s ease;
}

.main-content {
    grid-auto-rows: auto auto auto;
}

h1 {
    color: var(--background-orange);
    height: auto;
    margin-bottom: 25vh;
    align-self: center;
    font-size: 2rem;
}

#how-it-works {
    padding-bottom: 3.5em;
}

#showcase {
    width: 95%;
    margin: 0 auto 100px auto;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease;
}

.showcase a {
    color: var(--background);
    font-size: 2.5rem;
    background-color: var(--background-dark);
    border-radius: 20px;
    text-decoration: none;
    vertical-align: center;
}

.showcase a:hover {
    color: var(--background);
    text-decoration: none;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

video {
    object-fit: contain;
    height: 100%;
}

#cta {
    display: flex;
    justify-content: center;
}

#cta-main button{
    max-width: 45vw;
    height: 5vh;
}

@media screen and (min-width: 769px) {
    #how-it-works {
     font-size: 3.7rem;
    }
}
