*, *:before, *:after {
    margin: 0; padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}
html,
body {
    width: 100%;
    height: 100%;
}

@font-face{
    font-family: Gotham;
    src: url(../fonts/Gotham-Bold.otf) format("opentype");
    font-weight: 700;
}
@font-face{
    font-family: Gotham;
    src: url(../fonts/Gotham-Book.otf) format("opentype");
    font-weight: 300;
}
body{
    background: url(../images/white-house-fade.jpg) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.container{
    width: 100%;
    height: 100%;
}
#header{
    height: 10%;
    justify-content: center;
    align-items: center;
    padding: 3%;
}
#middle{
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 80%;
    max-height: 400px;
}

#middle-vids {
    display: block;
    padding: 0 20px;
}

.youtube-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%;
    margin: 0 0 20px;
}

.youtube{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.middle-row{
    width: 25%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;

}
.middle-row:nth-child(2n){
    width: 100%;
    display: flex;
}
.bud-logo img{
    width:100%;
    max-width: 400px;
}
.buds-head{
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../images/Bud-head-221.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.buds-head.right {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}
.smile{
    background-image: url(../images/Bud-smile-open-33\ 2.png);

}
#header h1{
    text-align: center;
    color: #FFF;
    font-family: Gotham;
    font-size: 30px;
    text-shadow: -3px 4px 4px rgba(14, 163, 241, 0.9);
    font-weight: 700;
}

#social-links{
    text-align: center;
    height: 10%;
}
#social-links a{
    display: inline-block;
    padding: 15px;
    margin: 0 20;
    font-size: 45px;
    color: rgba(255, 255, 255, 1);
    text-shadow: -2px 3px 8px rgba(0,0,0, 0.7);
}


@media (min-width: 576px) { 
    #header{
        height: 20%;
    }
    #header h1{
        font-size: 60px;
    }
    #middle{
        height: 70%; 
    }

}
@media (min-width: 768px) { 

    .middle-row{
        display: flex;
        width: 50%;
    }

    #middle {
        max-height: none;
    }

    #middle-vids{
        margin: auto;
        padding: 0;
        display: flex;
    }

    .youtube-wrapper {
        width: 50%;
        padding-top: 30%;
        margin: 0 20px;
    }

    .youtube-wrapper:first-of-type {
        margin-left: 40px;
    }
    
    .youtube-wrapper:last-of-type {
        margin-right: 40px;
    }
}

@media (min-width: 992px) { 
    #header h1{
        font-size: 75px;
    }
}

@media (min-width: 1200px) { 
    #header h1{
        font-size: 90px;
    }
    iframe{
        width: 560px;
        height: 315px;
    }
}
@media (min-width: 1600px) { 
    #header h1{
        font-size: 115px;
    }
}


