html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #393739;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image:url('../img/background-image.svg');
  /*  background-repeat:no-repeat; */
    background-size:contain;
  /*  background-position:center; */
    -webkit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size:cover;
}

body {
    text-align: left;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

img {
    max-width: 100%;
}

h1 {
    font-size: 40px;
    color: #fff;
    font-family: Montserrat, Helvetica, sans-serif;
    font-weight: 600;
    line-height: 1.4;
    padding: 0;
    margin: 0;
}

h2 {
    font-size: 17px;
    line-height: 1.4;
    color: #fff;
    font-family: Montserrat, Helvetica, sans-serif;
    font-weight: 400;
    padding: 0;
    margin: 0;
}

p {
    font-size: 16px;
    color: #fff;
    font-family: Montserrat, Helvetica, sans-serif;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

small {
    font-size: 16px;
    color: #fff;
    font-family: Montserrat, Helvetica, sans-serif;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

a {
    font-family: Montserrat, Helvetica, sans-serif;
    font-weight: 400;
    text-decoration: none;
    color: rgb(0, 0, 0);
}

/* EDIT DESCRIPTION LINK COLOR */
a:hover {
    color: rgb(170, 170, 170);
}

.section {
    width: 90%;
    max-width: 600px;
    position: relative;
    margin: 0 auto;
}

.social-spacing {
    margin-left: 16px;
    margin-right: 16px;
    white-space: nowrap;
    line-height: 1.5;
    color: #fff;
}

.clear {
    clear: both;
}

.avy {
    opacity: .95;
    width: 200px;
    height: 200px;
}
.avy:hover {
    opacity: 1;
}
.round {
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%; /* future proofing */
    -khtml-border-radius: 50%; /* for old Konqueror browsers */
    -webkit-appearance: none;
}

/* EDIT LINK UNDERLINE COLOR */
.underline:hover {
    border-bottom: 1px solid #ffffff;
}

.preul {
    border-bottom: 1px solid #eee;
    color: #ccc;
}

.center-align {
    text-align: center;
}

.white {
    color: #000;
}

.light-grey {
    color: #ccc;
}

.divider {
    border-bottom: 1px solid rgb(75, 75, 75);
}

.button {
    background: #ffffff;
    opacity: .9;
    padding: 20px;
    margin: 10px auto;
    border-radius: 5px;
}

.button:hover {
    opacity: 1;
}

.padding-top-50 {
    padding-top: 100px;
}
.padding-bottom-50 {
    padding-bottom: 50px;
}
.padding-bottom-100 {
    padding-bottom: 100px;
}
.padding-top-25 {
    padding-top: 25px;
}
.padding-top-15 {
    padding-top: 15px;
}

@media (max-width: 768px) {
    .section {
        width: 98%;
        max-width: 100%;
        padding: 0 2vw;
    }
    .avy {
        width: 120px;
        height: 120px;
    }
    .padding-top-50 {
        padding-top: 40px;
    }
    .padding-top-25 {
        padding-top: 15px;
    }
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 15px;
    }
    p, small {
        font-size: 14px;
    }
    .yt-video iframe,
    .img-responsive {
        left: 0;
        width: 100%;
        height: 100%;
    }
    .container iframe {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 900px !important;
    }
    .social-spacing {
        margin-left: 10px;
        margin-right: 10px;
    }
}

.yt-video{
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
    height: 0;
    border-radius: 5px;
  }
  .yt-video iframe{
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 90%;
    border-radius: 5px;
  }

.img-responsive {
    position: relative;
    left: 5%;
    width: 90%;
    height: 90%;
    border-radius: 5px;
}

.left {
    float: left;
}