body {
  color: #ced6e0;
  margin: 0;
  background: linear-gradient(-45deg, #a4b0be, #747d8c, #57606f, #2f3542, #2f3542, #57606f, #747d8c, #a4b0be);
  background-size: 400% 400%;
  position: relative;
  animation: animalthatter 25s infinite;
  transitionin 0.80s;
  font-family: Poppins;
}

h1 {
  text-align: center;
}

.zeusco {
  font-weight: bold;
}

.szoveg {
  text-align: center;
  font-weight: bold;
  font-size: 120%;
  line-height: 25px;
}

.padding {
  padding-left: 10px;
  padding-right: 10px;
}

.left {
  float: left;
}

.right {
  float: right;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #222730;
  color: #747d8c;
}

.footer p {
  border: none;
  background: #747d8c;
  height: 2px;
  margin: 22px 0;
}




@keyframes transitionin {
  from {
    opacity: 0;
    transform: rotateX(-10deg);
  }

  to {
    opacity: 1;
    transform: rotateX(0);
  }
}

@keyframes animalthatter {
  0% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}
