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: 150px;
  display: flex;
  flex-direction: row;
  width:50%;
  justify-content: center;
  align-items: center;

}
.static {
  position: absolute;
  background: white;
}
.static:hover{
  opacity:0;
}
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:10%;
  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;
}
