/* NAVIGATION BAR CSS */
body {
    color: white;
    margin: 0;
    font-size: 28px;
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    color: purple;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
    font-weight: 900;
}

/* Paragraph Text */
p {
    font-size: 12px;
}

.header {
    background-color: #f1f1f1;
    padding: 30px;
    text-align: center;
}

#navbar {
    z-index: 10000;
    overflow: hidden;
    background-color: #252525;
}

#navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

#navbar a:hover {
    background-color: #520074;
    color: white;
}

#navbar a.active {
    background-color: #12c000;
    color: white;
}

.content {
    padding: 16px;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.sticky + .content {
    padding-top: 60px;
}

/* SITE BACKGROUND */
background-image: url("https://i.imgur.com/UMGK8ik.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;

/* CONTACT BUTTON */
a.button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    text-decoration: none;
    color: initial;
}

/* WATCH COLUMNS (Stream embed & chat) CSS */
<meta name="viewport" content="width=device-width,
initial-scale=1">* {
    box-sizing: border-box;
}

/* Create two unequal columns that floats next to each other */
.column {
    float: left;
    padding: 10px;
    height: 300px;
}

.left {
    width: 70%;
}

.right {
    width: 30%;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* SOCIAL MEDIA PANELS TABLE */
.social-section {
    position: relative;
    margin: 40px -10px;
    height: 550px;
}

.social-main div {
    margin: 0 auto;
    margin-bottom: 10px;
}

.social-left div {
    margin: 0 auto;
}

.social-right div {
    margin: 0 auto;
}

.social-section a.social {
    position: relative;
    display: block;
    float: left;
    box-sizing: border-box;
    padding: 10px;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 0px;
}

.youtubeSub {
    float: right;
    padding-right: 10px;
    padding-top: 3px;
    height: 3px;
}

/*.responsiveCal {
    position: relative; 
    padding-bottom: 75%; 
    height: 0; 
    overflow: hidden;
}

.responsiveCal iframe {
     position: absolute; 
     top:0; 
     left: 0; 
     width: 100%; 
     height: 100%;
}
*/
@media (max-width: 50px) {
    .big-container {
        display: none;
    }
 }
 @media (min-width: 50px) {
    .small-container {
        display: none;
    }
 }

.responsive-iframe-container {
    position: relative;
    padding-bottom: 22%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
 }
 .responsive-iframe-container iframe,   
 .vresponsive-iframe-container object,  
 .vresponsive-iframe-container embed {
    position: absolute;
    top: 0;
    left: 21.5%;
    width: 58%;
    height: 100%;
 }


