

.circle{
  width: 25vw;
  height: 25vw;
  border-radius: 300px;
  background-color: var(--BGCOLOR);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.Rainbow12{
  animation: BoxShadowLogo 1s linear(0, 0.402 7.4%, 0.711 15.3%, 0.929 23.7%, 1.008 28.2%, 1.067 33%, 1.099 36.9%, 1.12 41%, 1.13 45.4%, 1.13 50.1%, 1.111 58.5%, 1.019 83.2%, 1.004 91.3%, 1) 1.2s forwards;
  margin: 88px;
}
.AsymLogo{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.bigG{
  font-size: 8rem;
}
.littleT{
  font-size: 4rem;
}
.subHeader{
  display: block;
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 40px;
  text-shadow: 0px 2px 0px #00000084;
  opacity: 0;
  animation: fadeIN 1s ease 1.5s forwards;
  padding-left: 10px;
  padding-right: 10px;
  text-align:center;
}
.CTAbtn{
  display: flex;
  width: 50vw;
  height: 72px;
  border-radius: 20px;
  background-color: var(--BGCOLOR);
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 1.8rem;
  transition: all ease 0.3s;
  border-radius: 0;
  width: fit-content;
  opacity: 0;
  animation: fadeIN 1s ease 1.5s forwards;
  box-shadow: 0px 4px 0px 0px #FF4E5D,
    0px 8px 0px 0px #62FF51,
    0px 12px 0px 0px #9785FB;
}
.CTAbtn:hover{
  border-radius: 45px;
  padding-left: 20px;
  padding-right: 20px;
  transform: translateY(-10px);
  box-shadow: 0px 0px 0px 6px #FF4E5D,
    0px 0px 0px 12px #62FF51,
    0px 0px 0px 18px #9785FB,
    0px 4px 4px 18px #00000084;
}
.Rainbow6{
  box-shadow: 0px 0px 0px 6px #FF4E5D,
    0px 0px 0px 12px #62FF51,
    0px 0px 0px 18px #9785FB,
    0px 4px 4px 18px #00000084;
  margin: 18px;
}

.email{
  display: inline-block;
  color: #fff;
  text-decoration: none;
  transition: all ease 0.3s;
  height: fit-content;
  width: fit-content;
  box-shadow: 0px 4px 0px 0px #FF4E5D,
    0px 8px 0px 0px #62FF51,
    0px 12px 0px 0px #9785FB;
}
@keyframes BoxShadowLogo {
  0%{
    box-shadow: 0px 0px 0px 0px #00000084;
  }
  100%{
    box-shadow: 0px 0px 0px 12px #FF4E5D,
    0px 0px 0px 24px #62FF51,
    0px 0px 0px 36px #9785FB,
    0px 4px 4px 36px #00000084;
  }
}
@keyframes fadeIN {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
@media (max-width: 700px) {
  .circle{
    width: 185px;
    height: 185px;
  }
}
