html{
  background:url(background.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-size: 100% 100%;
  margin: auto;
}
.box{
  display: flex;
  width:100%
}
.gif{
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  width:50%;
  justify-content: center;
  align-items: center;
  /* animation: tada 0.7s 2;*/
  /* animation: flash 2.5s infinite;
  animation-delay: 1.8s; */
  cursor: pointer;
  animation: tada 0.5s;
  animation-delay: 1.5s;
}
.static {
  position: absolute;
  background: white;
}
.static:hover{
  opacity:0;
  -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
     animation-play-state: paused;
}
.gif:hover {
  -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
     animation-play-state: paused;
}
.active:hover {
  -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
     animation-play-state: paused;
}
p{margin-left: 100px;
margin-right: 200px;
text-align: center;}
.text{
  /* font-family: 'Assistant'; */
  /* font-family: 'Caveat'; */
  font-family: 'Indie Flower';
  font-size: 24px;
  line-height: 50px;
  margin-top:15%;
  margin-left: 0px;
  /* margin-right: 10%; */
  width: 50%;
  height:auto;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.draggable-canvas {
  width:600px;
  /* height:700px; */
  position:fixed;
  left:6%;
  top:4%;
  /* background:green; */
  display: flex;
  flex-wrap:wrap;
}

.drag {
  width:100px;
  height:100px;
  align-items: center;
  cursor:grab;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translate(0, 100vh);
    visibility: visible;
  }

  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
/* @keyframes slide-up {
  from {
    margin-top: 100%;
    height:300px;}
  to{
    margin-top: 0%;
    height: 100%;
  }
} */
.appear{
  transform:translate(0, 100vh);
  animation: slideInRight 1.5s forwards;
}

@keyframes tada {
  /* from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  } */

  40%,
  80%{
    -webkit-transform: scale3d(0.9, 1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 3deg);
  }

  60%,
  100% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -3deg);
  }

  /* to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  } */
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0.5;
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  20%,
  60%{
    -webkit-transform: scale3d(0.9, 1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
