* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
  width: 100vw;
  background: linear-gradient(
    45deg,
    #e6fb04,
    #ff6600,
    #00ff66,
    #00ffff,
    #ff00ff,
    #ff0099,
    #6e0dd0,
    #ff3300,
    #099fff
  );
}
.main {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: auto;
}
.card {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  margin-top: 200px;
}
.logoFront,
.logoBack {
  width: 300px;
  border-radius: 50%;
  backface-visibility: hidden;
  position: absolute;
  cursor: pointer;
  /* background-color: aqua; */
}
.logoFront img,
.logoBack img {
  width: 100%;
}

.logoFront {
  animation: animateFront 5s linear infinite;
}
.logoBack {
  animation: animateBack 5s linear infinite;
}
.pageTitle {
  margin-top: 175px;
  margin-left: auto;
  margin-right: auto;
  color: white;
  padding: 10px 15px;
  border-radius: 10px;
  width: fit-content;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.pageTitle h1 {
  font-size: 1.3em;
  text-align: center;
  letter-spacing: 1px;
}
.pageTitle button {
  margin: 10px auto;
  padding: 10px 15px;
  border-radius: 35px;
  outline: none;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5),
    inset 0 5px 5px rgba(255, 255, 255, 1);
}
.pageTitle button a {
  text-decoration: none;
  color: #6e0dd0;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.pageTitle button:hover a {
  color: #fff;
  font-size: 16px;
  transition: 0.2s ease-in-out;
}
@keyframes animateFront {
  0% {
    transform: perspective(600px) rotateY(0deg);
  }
  100% {
    transform: perspective(600px) rotateY(180deg);
  }
}
@keyframes animateBack {
  0% {
    transform: perspective(600px) rotateY(-180deg);
  }
  100% {
    transform: perspective(600px) rotateY(0deg);
  }
}
