body {
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	margin: 0;
}
img:hover {
  animation: shake 0.5s;
  animation-iteration-count: infinite;
}
.alert {
  padding: 20px;
  background-color: #F44336;
  color: white;
}
.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.closebtn:hover {
  color: black;
}
.delay {
  animation: appear 2s forwards;
  animation-delay: 20s;
  color: #000000;
}
.landingPage {
  background-image: url(background2.jpg);
}
.storybook {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.fading {
  display: block;
  margin-left: 825px;
  margin-right: 825px;
  margin-top: 200px;
  width: 50%;
  animation: fadeInOut 10s ease-in-out 0s infinite alternate;
}
@keyframes appear {
  
  from {
    opacity: 0;
  }
  
  to {
    opacity: 1;
  }
}
@keyframes fadeInOut {
  0% { opacity: 0;}
  50% { opacity: 1;}
  100% { opacity: 0;}
}
@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}
