html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline;
	}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    width: 100%; height: 100%;
    line-height: 1;
    font-family: 'proxima-nova', Helvetica, Verdana, sans-serif;
    font-weight: 400;
    font-size: 13px;
    overflow: hidden;
}

body:before {
    content:"";
    position:fixed;
    left:0;
    top:0;
    right:0;
    bottom:0;
    z-index:-1;
    background: transparent;
    -webkit-animation: color-change 8s linear infinite alternate both;
    animation: color-change 8s linear infinite alternate both;
}

ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

.main-wrapper {
    width: 100%; height: 100%;
}

.container {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    overflow: visible;
}

.container img {
    min-width: 280px;
    width: 450px; height: auto;
    max-width: 80vw;

    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.subtext {
    font-size: 22px;
    font-weight: 400;
    color: white;
    
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.subnav {
    position: absolute;
    left: 50%; bottom: 30px;
    transform: translate(-50%, 0);
}

.subnav ul li {
    float: left;
    position: relative;
}

.subnav ul li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    cursor: pointer;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.subnav ul li a:hover {
    color: rgba(253, 104, 95, 1.0);
}

.subnav ul li span {
    position: absolute;
    display: none;
    left: 0px; top: 0px;
    transform: translate(-42%, -115%);
    padding: 20px 25px;
    min-width: 220px;
    background: rgba(38, 50, 71, 1.000);
    color: #fff;
    font-size: 15px;
    line-height: 19px;
    text-align: center;
    border-radius: 3px;
}

.subnav ul li span:after {
    top: 100%;
    left: 50%;
    border: 0 solid transparent;
    content: '';
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: transparent;
    border-top-color: rgba(38, 50, 71, 1.000);
    border-width: 10px;
    transform: translate(-50%,0);
}

.subnav ul li span p {margin-bottom: 15px;}

.subnav ul li span p:last-child {margin-bottom: 0px;}

@-webkit-keyframes color-change {
  0% {
    background: #19dcea;
  }
  25% {
    background: #b22cff;
  }
  50% {
    background: #ea2222;
  }
  75% {
    background: #f5be10;
  }
  100% {
    background: #3bd80d;
  }
}
@keyframes color-change {
  0% {
    background: #19dcea;
  }
  25% {
    background: #b22cff;
  }
  50% {
    background: #ea2222;
  }
  75% {
    background: #f5be10;
  }
  100% {
    background: #3bd80d;
  }
}

