body {
  color: #fff;
  background: #55068F;
  margin: 0;
  font-family: Josefin Sans;
}

h1 {
  text-align: center;
  padding-top: 50px;
  margin-bottom: 7px;
}

h2 {
  color: #0EADFF;
  margin-top: 50px;
  text-align: left;
  border-bottom: 1px solid #0EADFF;
  padding-bottom: 5px;
}

h3 {
  color: #D502F1;
  font-size: 110%;
  margin-bottom: 5px;
}

h4 {
  text-align: center;
  font-size: 200%;
  margin-top: 0px;
  margin-bottom: 5px;
}

p {
  font-weight: lighter;
  margin-top: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-type: none;
}

li {
  line-height: 20px;
}

img {
  max-width: 200px;
}

.animation {
  animation: transitionin 1.2s;
}

.img {
  margin-top: 50px;
  margin-left: 15px;
  margin-right: 15px;
  transition: transform 0.5s;
}

.img:hover {
  transform: scale(1.1);
}

.header {
  background: linear-gradient(45deg, #0EADFF, #D502F1);
  padding-top: 10px;
  border-bottom: 5px solid #02F1E9;
}

.navbar {
  background: linear-gradient(45deg, #0EADFF, #D502F1);
  position: fixed;
  top: 0;
  width: 100%;
  padding-top: 3px;
  padding-bottom: 3px;
  border-bottom: 5px solid #02F1E9;
}

.wikibody {
  margin-left: 200px;
  margin-right: 200px;
  padding-bottom: 10px;
}

.wikicim {
  margin-top: 10px;
  text-align: center;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding-bottom: 25px;
}

.home {
  float: left;
  padding-top: 2px;
  margin-left: 10px;
  margin-right: 20px;
  max-height: 30px;
  filter: invert(1) brightness(100);
  transition: filter 0.4s, transform 0.4s;
}

.home:hover {
  filter: invert(0) brightness(1);
  transform: scale(1.2);
}

.back {
  position: absolute;
  text-align: left;
  margin-left: 10px;
  margin-right: 20px;
  max-height: 55px;
  filter: invert(1) brightness(100);
  transition: filter 0.4s, transform 0.4s;
}

.back:hover {
  filter: invert(0) brightness(1);
  transform: scale(1.2);
}

.smallcontainer {
  max-width: 1080px;
  margin: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.icon {
  max-width: 100px;
  margin-left: 5px;
  margin-right: 5px;
}

.act {
  transition: transform 0.25s, filter 0.3s;
  filter: invert(1) brightness(100);
}

.act:hover {
  transform: scale(1.1);
  filter: invert(0) brightness(1);
}

.acted {
  transform: scale(1.15);
}

.zeusco {
  color: #fff;
  font-weight: bold;
  transition: color 0.4s;
}

.zeusco:hover {
  color: #02F1E9;
}

.center {
  text-align: center;
  padding-top: 3px;
}

.left {
  float: left;
}

.right {
  float: right;
}

.padding {
  line-height: 25px;
  padding-left: 10px;
  padding-right: 10px;
}

.footer {
  border-top: 5px solid #02F1E9;
  background: linear-gradient(45deg, #0EADFF, #D502F1);
  color: white;
  font-size: 14px;
}

.footer p {
  margin-top: 5px;
  margin-bottom: 0px;
}

.footerplus {
  width: 100%;
  position: fixed;
  bottom: 0;
  animation: inherit;
}

@keyframes transitionin {
  from {
    opacity: 0;
    transform: rotateX(-10deg);
  }

  to {
    opacity: 1;
    transform: rotateX(0);
  }
}
