* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #000000;
}
.cl {
  width: 300px;
  height: 300px;
  border: 10px solid rgb(155, 154, 154);
  z-index: 1;
  clip-path: circle(65% at 70% 70%);
  transform: translate(-68%, -68%);
  left: 50%;
  top: 50%;
  background: linear-gradient(yellow, orange);
  position: absolute;
  backdrop-filter: drop-shadow(0px 0px 10px blue);
  animation: bounce 2s linear infinite;
}
.cl::before {
  content: "Dot back end server is started.";
  width: 300px;
  height: 300px;
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 18px;
  border-radius: 10px;
  color: #008714;
  padding-top: 75px;
  padding-left: 10px;
  z-index: 1;
  border: 5px solid #000000;
  cursor: pointer;
  background: linear-gradient(orange, yellow);
  transition: all 1s;
  animation: animate 2s linear infinite;
}
.apiCard{
  padding: 2rem;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: all;
  max-width: fit-content;
  border-radius: 20px;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition-duration: 700ms;
}
.apiCard:hover{
  background-color: yellowgreen;
  color: blue;
}
@keyframes animate {
  0% {
    content: "DOT Backend Server";
  }
  100% {
    content: "Server Started...";
  }
}

@keyframes bounce {
  0% {
    transform: translate(-68%, -68%);
  }
  50% {
    transform: translate(-68%, -75%);
  }
  100% {
    transform: translate(-68%, -68%);
  }
}
