﻿#theme {
    background-image: url(../img/day.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 31vh;
    display: flex;
    align-items: center;
}

#hero-leaf {
    background-image: url(../img/dayleaf.png);
    position: relative;
    padding-top: 1.5rem;
    padding-bottom: calc(2rem + 7rem);
    background-size: 100% 100%;
    border-radius: 0 0 220px 220px;
    background-repeat: repeat-y;
}

    #hero-leaf:before {
        content: "";
        background-color: #F9EDCC;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -3;
        border-radius: 0 0 220px 220px;
    }

@media (max-width: 769px) {
    #hero-leaf {
        background-image: unset;
        padding-bottom: 2rem;
        border-radius: 0;
    }

        #hero-leaf:before {
            border-radius: 0;
        }
}

@media (max-width: 576px) {
    #theme {
        min-height: 13vh;
    }
}

.see-more {
    position: relative;
}

    .see-more .more {
        position: absolute;
        color: #FFF;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        user-select: none;
        font-size: 14px;
    }

.youtube {
    position: relative;
    overflow: hidden;
    height: 0;
    width: 100%;
    top: 0;
    left: 0;
    padding-bottom: 49%;
}

    .youtube iframe,
    .youtube object,
    .youtube embed {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        z-index: 99;
        pointer-events: none;
        user-select: none;
        transform: translate(-50%, -50%);
        height: 1600px;
    }

    .youtube span {
        z-index: 101;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-weight: 400;
        font-size: 28px;
        text-align: center;
    }