:root {
	font-family: 'Segoe UI', system-ui, Helvetica, Arial, sans-serif;
	line-height: 1.5rem;
	font-weight: 400;
	font-size: 1.2rem;

	color: rgba(255, 255, 255, 0.87);
	background-color: #3d2683;

	font-synthesis: none;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	font-weight: 500;
	color: #fff;
	text-decoration: inherit;
}

a:hover {
	color: #fff;
}

body {
	margin: 0;
	display: flex;
	place-items: center;
	min-width: 20em;
	min-height: 100vh;
}

.card {
	padding: 2em;
}

#app {
	width: 45em;
	margin: 0 auto;
	text-align: center;
}

.hidden {
	display: none;
}

.visible {
	display: block;
}

.visible-inline {
	display: inline;
}

.green {
  color: #E2FF87 !important;
}

.btn-grad {
  background-image: linear-gradient(to right, #E2FF87 0%, #b0e52b  51%, #E2FF87  100%);
  margin: 10px;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;            
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: block;
}

.btn-grad:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

button {
	float: right;
	font-size: inherit;
	color: #191919;
	margin: 1em 0;
	border-radius: 2em;
	padding: 0.5em 1em;
	font-weight: 500;
	font-family: inherit;
  background-image: linear-gradient(to right, #b0e52b 0%, #E2FF87  51%, #b0e52b  100%);
	transition: 0.5s, transform 0.1s ease-in-out;
  background-size: 200% auto;
  cursor: pointer;
	border: 2px solid transparent;
	line-height: inherit;
}

button:hover {
	border: 2px solid #fff; 
	filter: drop-shadow(0 0 0.2em #fff); 
  background-position: right center;
}

button:active{
  transform: scale(0.95);
}

button:disabled {
	color: #555;
  background-image: none;
	background: #cecece;
	border: 2px solid #cecece;
}

button:disabled:hover {
	border: 2px solid #cecece;
	filter: none;
	cursor: not-allowed;
}

.button-secondry {
  color:#fff;
  background-image: none;
  background: #3d2683;
}

.float-left {
	float: left;
}

.float-right {
	float: right;
}

.clear-both {
  clear: both;
}

.no-margin-top {
	margin-top: 0;
}

.button-icon {
	line-height: 1em;
	padding-right: 0.2em;
	vertical-align: middle;
}

.instruction-text {
  padding: 0.5em 1em;
  margin:1em 0;
  line-height: inherit;
}

.add-margin-p div p,
.add-margin-p div ul,
.add-margin-p div ol {
	margin-bottom: 1em;
}

@keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}

.animation-back-out-up {
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-name: backOutUp;
}


@keyframes wiggle {
  0% {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

.animation-wiggle {
  animation-delay: 1s;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-name: wiggle;
}

@keyframes wobble {
  from {
    transform: scale3d(1.5, 1.5, 1);
  }

  15% {
    transform: scale3d(1.5, 1.5, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.animation-wobble {
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-name: wobble;
}

.margin-top-minus-6em {
  margin-top: -6em !important;
}

@keyframes fadeOut {
  from { opacity: 1;}
  to { opacity: 0;}
}

@keyframes fadeIn {
  from { opacity: 0;}
  to { opacity: 1;}
}

.fade-out {
  animation: fadeOut 1s ease-out forwards;
}

.fade-in {
  animation: fadeIn 1s ease-out forwards;
}



