/* Imports */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap");

html {
  font-family: "Poppins", sans-serif;
  background-color: #1b1b21;
}

.agendapp-section {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}


.dot {
  color: #7efd5b;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.agend {
  color: white;
}

.app {
  color: #7efd5b;
}

.coming-soon {
  font-family: arial;
  position: absolute;
  display: block;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 300px;
  height: 130px;
  font-size: 20px;
  left: 50%;
  top: 180px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: white;
}

.copyright {
  font-family: "arial", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  text-align: center;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  color: gray;
  gap: 0.2rem;
}