body {
  background-color: #29132e;
  background-image: url("pictures/swegi_smug_face.jpeg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;

}

h1 {
  color: #f887ff;
  font-family: verdana;
  text-align: center;
}

p {
  color: #f887ff;
  font-family: verdana;
  font-size: 20px;
}

a {
  color: #f887ff;
  font-family: verdana;
  background-color: yellow;
  font-weight: bold;
}

.zoom-in-out-box-container {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 100vh;

}

.zoom-in-out-box {
  /* background-image: url("pictures/swegi_smug_face.jpeg"); */
  font-family: verdana;
  font-weight: bold;
  text-align: center;

  line-height: 150px;
  width: 150px;
  height: 150px;
  background: #f887ff;
  animation: zoom-in-zoom-out 1s ease infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.5, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
}

