@keyframes changeFont {
  0% {
    font-family: 'Delicious Handrawn';
  }
  15% {
    font-family: 'Cinzel';
  }
  30% {
    font-family: 'Kaushan Script';
  }
  45% {
    font-family: 'Orbit';
  }
  60% {
    font-family: 'Orbitron';
  }
  75% {
    font-family: 'Dela Gothic One';
  }
  90% {
    font-family: Arial, sans-serif;
  }
  105% {
    font-family: 'Aguafina Script';
  }
}

.changingText {
  animation: changeFont 1.3s infinite;
}

.centerButton {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.centerImg {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

ul {
}

/*  */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #27262e;
}

::-webkit-scrollbar-thumb {
  background: var(--bs-blue);
}

p {
}

.centerHeading {
  text-align: center;
}

.error-container {
  background-color: rgba(255, 0, 0, 0.1);
  padding: 20px;
  border-radius: 5px;
}

.error-message {
  color: #fff;
  font-weight: bold;
}

.image-container {
  position: relative;
  display: inline-block;
}

.image-container img {
  width: 100%;
  height: auto;
}

.image-container i {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #ffffff;
}

.form-control ::placeholder {
  color: black;
  opacity: 1;
}

.form-control::placeholder {
  color: black;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: black;
}

.form-control::-ms-input-placeholder {
  color: black;
}

.borderForInput1 {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
}

