* {
  background-color: #1CC5A5;
}

.centered {
  color: #020000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 40%;
  left: 50%;
  font-size-adjust: 0.9;
  line-height: 1.9;
  text-align: center;
}

a {
  color: #0028ff;
}

a:hover {
  color: #ff0000;
}

img {
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
  width: 40%;
  height: 40%;
  animation: zoom 2s infinite;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

@media screen and (max-width: 1500px) {
  img {
    width: 70%;
    height: 70%;
  }
}
