.main-container{
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0;
    padding-top: 50px;
    background-color: var(--brown-color);
    align-items: start;
    justify-content: center;
}


#video-container{
    display: block;
    margin-left: 10%;
    flex: 40%;
}
#video-container > *{
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}


#video-title{
    background-color: var(--brown-color);
    font-size: xx-large;
    color: var(--yellow-color);
    font-style: italic;
    padding: 10px;
    border: 3px var(--yellow-color) solid;
    margin: 10px 40px;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.video-wrapper{
    height: 0;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
}

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


.buttons-wrapper{
    margin: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: white solid 2px;

}

button>span, button>a{
    vertical-align: middle;
    font-size: medium;
}
#newsletter svg, #patreon-logo > svg{
    width: 30px;
    margin-right: 10px;
}

.buttons-wrapper a{
    background-color: var(--brown-color);
    padding: 10px 20px;
    width: fit-content;
    color: white;
    font-size: x-large;
    font-weight: bold;
    vertical-align: middle;
    border: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buttons-wrapper a:hover{
    color: var(--yellow-color);
    cursor: pointer;
    -webkit-transition: color 200ms linear;
    -ms-transition: color 200ms linear;
    transition: color 200ms linear;
}
.buttons-wrapper a:not(:hover){
    color: white;
    -webkit-transition: color 200ms linear;
    -ms-transition: color 200ms linear;
    transition: color 200ms linear;
}
.buttons-wrapper a:hover path{
    fill:var(--yellow-color);
    -webkit-transition: fill 200ms linear;
    -ms-transition: fill 200ms linear;
    transition: fill 200ms linear;
}
.buttons-wrapper a:not(:hover) path{
    fill:white;
    -webkit-transition: fill 200ms linear;
    -ms-transition: fill 200ms linear;
    transition: fill 200ms linear;
}




.description-container{
    flex: 50%;
}

.description{
    border:  solid  3px var(--brown-color);
    font-family: "Courier Prime", monospace;
    font-weight: 400;
    font-style: normal;
    color: white;
    flex: 40%;
    margin: 10px ;
    padding: 10px 40px;
    line-height: 1.6rem;
    white-space: pre-line;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.description:hover{
    cursor: pointer;
}

#description-input{
    display: none;
}

/* #description-input:checked ~ .description {
    display: block;
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}
#description-input:not(:checked) ~ .description{
    display: block;
    max-height: 500px;
    transition: max-height 0.5s ease-out;
} */




#banner-container{
    display: grid;
    margin-right: 10%;
}
#banner-container>*{
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

.video-gallery-button{
    background-color: white;
    color: var(--brown-color);
    border: 3px solid var(--brown-color);
    padding: 5px 70px;
    transition: 0.2s;
    margin-top: 16px;
    margin-bottom: 16px;
    text-decoration: none;
display: flex;
    justify-content: center;
}
.video-gallery-button:hover{
    background-color: var(--brown-color);
    -webkit-transition: background-color 200ms linear;
    -ms-transition: background-color 200ms linear;
    transition: background-color 200ms linear;
}
.video-gallery-button:hover path{
    fill: white;
    -webkit-transition: fill 200ms linear;
    -ms-transition: fill 200ms linear;
    transition: fill 200ms linear;
}
.video-gallery-button:hover span{
    color: white;
    -webkit-transition: color 200ms linear;
    -ms-transition: color 200ms linear;
    transition: color 200ms linear;
}
.video-gallery-button svg{
    width: 20px;
    margin-right: 1rem;
}
.video-gallery-button span{
    font-size:large;
    font-weight: bold;
    font-style: italic;
    width: max-content;
}
#banner{
    width: 100%;
    background-color: var(--brown-color);
}
.banner-info{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.banner-info>*{
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
}
.floz-logo{
    width: 30%;
}

.banner-info h3{
    color: white;
    font-size: xx-large;
    font-weight: normal;
    font-style: italic;
    margin: 0;
    margin-top: -0.5em;
}

.banner-info ul{
    color: white;
    margin: 0;
    list-style: none;
    width: 70%;
    padding: 0;
    font-size: large;
    margin-bottom: 2rem;
}
.banner-info ul>li{
    margin: 1.5em;
}

.subscribe-button{
    background-color: var(--yellow-color);
    width: 100%;
    color: var(--brown-color);
    font-size: xx-large;
    font-style: italic;
    font-weight: bold;
    padding:10px 0;
    text-decoration: none;
    border: none;
    display: flex;
justify-content: center;
    align-items: center;
}

.subscribe-button:hover{
    text-decoration: none;
    color: white;
    background-color: red;
    -webkit-transition:  200ms linear;
    -ms-transition:  200ms linear;
    transition: all 200ms linear;
}

.subscribe-button:not(:hover){
    color: var(--brown-color);
    background-color: var(--yellow-color);
    -webkit-transition:  200ms linear;
    -ms-transition:  200ms linear;
    transition: all 200ms linear;
}

#heart path{
    fill: none;
}
#heart:hover path{
        
    fill: red;
 -webkit-transition:  2000ms linear;
    -ms-transition:  2000ms linear;
    transition: all 2000ms linear;
}

#heart:not(:hover) path{
        
    fill: none;
 -webkit-transition:  2000ms linear;
    -ms-transition:  2000ms linear;
    transition: all 2000ms linear;
}

.buttons-wrapper a {
    width: 33%;

}
 #patreon-logo > svg{
    width: 55%;
    height: 55%;
    margin-right: 0px;
}

@media only screen and (max-width: 600px) {
    .main-container{
        flex-direction: column;
        padding-top: 0;
    }

    #video-container{
        margin: 0;
        width: 100%;
    }

    #video-title{
        margin-left: 1em ;
        margin-right: 1em;
        border: 0;
        font-size: large;
    }

    .buttons-wrapper{
        margin: 5px;
        height: 2.6em;
        border-bottom: white solid 2px;
    }
    .buttons-wrapper a {
        padding: 0;
        margin: 0;
        width: 33%;
        font-size: small;
        font-style: italic;
        text-decoration: none;

    }
     #newsletter svg, #patreon-logo > svg{
        width: 20px;
        margin-right: 8px;
    }
    button>span{
        font-size: small;
    }

    #newsletter{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 1em;
    }
    #banner-container {
        display: none;
    }

    .description{
        font-size: medium;
        padding: 5px 15px;
        margin-left: 1em ;
        margin-right: 1em;
        line-height: 1.6em;
        word-spacing: -1px;
            max-height: 30vh;
            overflow: scroll;

    }

        
     #patreon-logo > svg{
                width: 55%;
                height: 55%;
                margin-right: 0px;
     }

     #heart-logo > svg{
                width: 15%;
                height: 40px;
                margin-right: 0.2em;

    }



}


/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 601px) {
    .main-container{
        flex-direction: column;
        padding-top: 0;
    }

    #video-container{
        margin: 0;
    }
    #video-container> .description{
        font-size: medium;
        padding: 5px 15px;
        margin-left: auto ;
        margin-right: auto;
        overflow: scroll;
    }


    #video-title{
        margin: 0;
    }


    .buttons-wrapper{
        margin: 5px;
    }
    .buttons-wrapper a {
        padding: 8px 12px;
        margin: 0 5px;
        font-style: italic;
        text-decoration: none;

    }
    #newsletter svg{
        width: 20px;
        margin-right: 8px;
    }
    button>span{
        font-size: small;
        width: max-content;
    }

    #newsletter{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #heart-logo, #patreon-logo {
        display: flex;
        padding: 0;
        justify-content: center;
        align-items: center;
    }

    
     #patreon-logo > svg{
                margin-right: 0px;
     }

     #heart-logo > svg{
                width: 20%;
                margin-right: 0.2em;

    }
    #banner-container {
        display: none;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .main-container{
        flex-direction: row;
        padding-top: 25px;
    }

    #video-container{
        margin-left: 10%;
    }


    #video-title{
    margin: 10px 40px;
    }

    .buttons-wrapper a {
        display: none;
    }

  .buttons-wrapper span {
        font-size: medium;
    }

    #newsletter svg {
        width: 30px;
        margin-right: 10px;
    }
    button>span{
        font-size: medium;
    }

    #newsletter{
        display: flex;
        justify-content: center;
        align-items: center;
    }

     #heart-logo, #patreon-logo{
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

     #heart-logo > svg{
                width: 60px;
                margin-right: 0px;

    }

     #patreon-logo > svg{
                margin-right: 0px;
                width: 90%;
                height: 90%;

    }
    #banner-container {
        display: initial;
    }


}



/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    #video-container> .description {
        padding: 20px 40px;
        margin-left: auto;
    }
    
     #heart-logo, #patreon-logo, #newsletter{
         display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
    }


    button>span{
        font-size: medium;
    }

    #newsletter > svg{
        
    }

     #heart-logo > svg{
                width: 60px;
                margin-right: 0px;

    }

     #patreon-logo > svg{
                margin-right: 0px;
                width: 5em;

    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}
