/* Put your Mobile First styles here */

html{
    background: #222222;
    height: 100%;
}

body{
    height: 100%;

    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1000px;
    width: 90%;
    height: 100%;
}

div#main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    height: 100%;
}

.logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin-bottom: 0.5em;
}

.logo svg {
    max-width: 100%;
    display: block;
    height: auto;
}

h1 {
	font-family: 'Open Sans', sans-serif;
	color: #FFF;
    font-size: 24px;
    font-weight: 400;
    padding: 0;
}


p {
	font-family: 'Open Sans', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin: 10px 3px;
    
}

a{
    color: #ffef00;
    font-weight: 600;
    text-decoration: none;
}

a.b1{
    background-color: #FFF;
    color: #222;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 50px;
    font-size: 15px;
    padding: 16px 22px;
    margin: 10px 0 0px;
    display: block;
}
a.b1:hover{
    background-color: #ccc;
    color: #222;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}
.delay-400 {
    animation-delay: 0.4s;
}
.delay-500 {
    animation-delay: 0.5s;
}


.new-site {
    margin-top: 40px;
   padding-top: 0px;
   border-top: 1px solid rgba(255, 255, 255, 0.2);
}



@media only screen and (min-width: 500px) {


    .logo {
        max-width: 300px;
    }

    h1{
        text-align: left;
        font-size: 25px;
    }

    .new-site {
        margin-top: 40px;
        padding-top: 0px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        width: 100%;
        text-align: left;
    }


    p a{
        position: relative;
      }
    
    p a:after{
    content: '';
    position: absolute;
    width: 0; height: 2px;
    display: block;
    margin-top: 2px;
    right: 0;
    background: #ffef00;
    transition: width .3s ease;
    -webkit-transition: width .3s ease;
    }
    
    p a:hover:after{
    width: 100%;
    left: 0;
    background: #ffef00;
    }
      



}





@media only screen and (min-width: 1000px) {


    a.b1:hover{
        transition: all 0.2s ease-in-out;
    }

    h1{
        font-size: 28px;
    }

}








@media only screen and (min-width: 1300px)  {


} /* Close Wide Desktop media query */










/* Put your styles above here
================================================== 
 * Print styles: Inlined to avoid required HTTP connection: h5bp.com/r */
 @media print {
     * { background: transparent !important; color: #000 !important; /* Black prints faster: h5bp.com/s */ box-shadow: none !important; text-shadow: none !important; }
     a, a:visited { text-decoration: underline; }
     a[href]:after { content: " (" attr(href) ")"; }
     abbr[title]:after { content: " (" attr(title) ")"; }
     /* Don't show links for images, or javascript/internal links */
     .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
     pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
     thead { display: table-header-group; /* h5bp.com/t */ }
     tr, img { page-break-inside: avoid; }
     img { max-width: 100% !important; }
     @page { margin: 0.5cm; }
     p, h2, h3 { orphans: 3; widows: 3; }
     h2, h3 { page-break-after: avoid; }
 }