.readyWrapperClient {
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background-color: #310e68;
  background-image: linear-gradient(-45deg,#ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  position: relative;
  display: none;
}

.readyBtn {
  width: 300px;
  height: 120px;
  max-width: 70vw;
  max-height: 25vw;
  border-radius: 20px;
  color: white;
  border: 3px solid white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  text-transform: uppercase;
  font-family: 'Londrina Solid', cursive;
  cursor: pointer;
  background-color: rgba(255, 0, 0, 0.0);
}

.readyBtn h2 {
  margin-bottom: 0px;
  margin-top: 0px;
}

.readyBtn:active {
  transform: translateY(5px);
}

.wrapperlogo {
  width: 300px;
  height: 200px;
  max-width: 70vw;
  max-height: 25vw;
  position: absolute;
  bottom: 20px;
}

.wrapperlogo img {
  width: 100%;
  height: auto;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
