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 {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
body {
  overflow: hidden;
  background: black;
}

@font-face {
  font-family: 'harry_pregular';
  src: url('../fonts/harryp.woff2') format('woff2'),
       url('../fonts/harryp.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  animation: 1s linear forwards;
}

canvas {
  display: none;
  position: relative;
  z-index: 1;
  background: linear-gradient(-45deg, #2c003e, #41aaa8, #51dacf, #d2fafb);
  background-size: 400% 400%;
  animation: gradientBackground 40s ease infinite;
}

@keyframes gradientBackground {
	0% {
		background-position: 0% 35%;
	}
	25% {
		background-position: 65% 35%;
	}
	50% {
		background-position: 100% 65%;
  }
  
  75% {
    background-position: 0% 100%;
  }

  100% {
    background-position: 0% 35%;
  }
}



.previo-image{
  width: 100%;
  height: 100%;

}

.button-start{
  position: absolute;
  bottom: 16%;
  right: calc(50% - 285px);
  width: 200px;
  height: 50px;
  border-radius: 5px;
  font-size: 25px;
  color: #FFF;
  background: #000;
  border:2px solid #d9a000;
  font-family: 'harry_pregular';
  line-height: 49px;
  filter:blur(0px);
}

.button-start:hover{
  animation: smoke2 2s linear forwards;
}




@keyframes smoke2 {
  0% {
      opacity: 1;
      filter:blur(0px);
  }
  100% {
      opacity: 0;
      filter:blur(20px);
  }
}


@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}