@font-face {
  font-family: BaksoSapi;
  src: url("BaksoSapi.otf");
}

@font-face {
  font-family: ChildrenSans;
  src: url("ChildrenSans.ttf");
}
body {
  /*   background-color: rgb(0, 0, 0); */
  background-image: url("background.png");
}
@keyframes example {
  0% {
    color: rgba(255, 212, 163, 0.719);
    border-color: rgb(255, 255, 255);
  }
  25% {
    color: rgba(203, 163, 255, 0.719);
    border-color: rgba(203, 163, 255, 0.719);
  }
  50% {
    color: rgba(163, 244, 255, 0.719);
    border-color: rgba(163, 244, 255, 0.719);
  }
  100% {
    color: rgba(255, 212, 163, 0.719);
    border-color: rgb(255, 255, 255);
  }
}

/* The element to apply the animation to */

h1 {
  color: rgba(255, 255, 255, 0.719);
  /*   background-color: rgba(128, 225, 255, 0.603); */
  font-size: 60px;
  /*   border-style: ridge; */
  animation-name: example;
  animation-duration: 8s;

  /*   border-style: dotted; */

  width: 280px;
  border-radius: 1px;
  /*   border-style: none none dashed none; */
  border-width: 5px;
  border-color: rgb(255, 255, 255);
  font-family: ChildrenSans;
  margin-bottom: 50px;
  margin-left: 100px;
}

h2 {
  color: rgb(255, 255, 255);
  /*   background-color: rgba(128, 225, 255, 0.603); */
  font-size: 25px;
  /*   border-style: ridge; */
  animation: pop 0.8s ease-in-out;
  animation-delay: 0.5s;
  font-family: ChildrenSans;
  margin: auto;
  width: 50%;

  padding: 10px;
}

.lol {
  color: rgb(255, 255, 255);
  /*   background-color: rgba(128, 225, 255, 0.603); */
  font-size: 25px;
  /*   border-style: ridge; */

  font-family: ChildrenSans;
  margin: auto;
  width: 50%;

  padding: 10px;
}

p {
  color: rgb(255, 255, 255);
  margin-left: 20px;
}

img {
  margin-top: -50px;
  margin-left: 50px;
  border-color: rgba(47, 241, 255, 0.76);
  border-width: 10px;

  border-style: outset;
  border-radius: 5px;

  animation-name: example;
  animation-duration: 4s;
  padding: 10px;
}

@keyframes pop {
  50% {
    transform: scale(1.2);
  }
}
button:hover {
  background-color: #026485fd;
}

a:hover {
  transition: all 0.8s ease;
  animation: pulse 0.3s linear 1;
  background-color: #026485fd;
}
