@import url("https://fonts.googleapis.com/css?family=Noto+Sans");
* {
  font-family: "Lucida Handwriting";
  font-size: 2vw;
  color: #ffd700;
  margin: 0;
  font-style: italic;
}

body {
  background-color: black;
  background: rgb(20, 0, 173);
  background: radial-gradient(
    circle,
    rgba(20, 0, 173, 1) 0%,
    rgba(5, 4, 36, 1) 35%,
    rgba(0, 0, 0, 1) 100%
  );

  text-align: center;
}

#para_div {
  padding: 40px 30px;
}
#refl {
  -moz-transform: scaleY(-1);
  -o-transform: scaleY(-1);
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
  -moz-transform: rotateX(210deg);
  -o-transform: rotateX(210deg);
  -webkit-transform: rotateX(210deg);
  transform: rotateX(210deg);
  perspective: 200px;
  -webkit-mask-image: -webkit-gradient(
    linear,
    right top,
    right bottom,
    from(transparent),
    color-stop(20%, transparent),
    to(rgba(0, 0, 0, 0.4))
  );
}
.row {
  clear: both;
  font-size: 40;
}

.column {
  width: 50%;
  float: left;
}
.li {
  font-family: "Comic Sans MS";
  font-size: 30px;
  color: #000000;
  text-align: center;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 60vh;
  background: url("designing1.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: bg 10s ease-in-out;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}
@keyframes bg {
  0% {
    background: url("designing1.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  50% {
    background: url("designing2.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  100% {
    background: url("designing3.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.8;
  }
}
.heading {
  font-size: 9vw;
  color: black;
  background-color: white;
  padding: 20px 40px;
  mix-blend-mode: difference;
}
