body {
    background-image: url(images/assets/gifs_background.gif);
}

.main {
  max-width: 1000px;
  margin:0 auto;
}

.wiggly {
  background-color: #2d4aa29a;
  padding: 30px;
  display: flex;
}

.wiggly span {
  font-size: 100px;
  color: #75edad;
  text-shadow: 5px 5px #e51717;
  animation: wiggly 1s infinite;
  animation-delay: calc(.1s * var(--i));
}

@keyframes wiggly {
  0%,40%,100% {
    transform: translateY(0)
  }
  20% {
    transform: translateY(-20px)
  }
}

.warning {
  display: inline-block;
  padding: 30px;
  width: 500px;
  margin-top: 75px;
  margin-left: 30px;
  margin-bottom: 75px;
}

.warningtext {
  font-size: 45px;
  color:#b9f5d5;
  text-shadow:2px 2px #e51717;
}

a:link {
  color:#b9f5d5;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  color: #7ecce7;
  text-decoration: none;
  font-weight: bold;
}

a:active {
  color:#e51717;
  text-decoration: none;
}

.bigdiv {
  background-color: #2d4aa29a;
  padding: 30px;
  margin-top: 10px;
}

.divwithindiv {
  display: inline-block;
  height: 500px;
  width: 500px;
}