@

  
  @keyframes animStar {
    from {
      transform: translateY(0px);
    }
    to {
      transform: translateY(-2000px);
    }
  }
  

  body {

	background-size: 100% 100%;
	animation: gradient 15s ease infinite;


    margin: 0px !important;
overflow: hidden;
background: #FFF;
	min-height: 100vh;
	font-family: Arial, Helvetica, sans-serif;
 
  }



h1 {
  color: blue;
  text-align: center;
}

#h5 {
  color: blue;
  font-size: 20px;
}




.bouncing-text {
  display: flex;
  font-size: 36px;
  font-weight: bold;
  font-family: "Share Tech Mono", monospace;
}

.screen {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

.app {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 24px;
	padding: 24px 16px;
}

.header-text {
	margin-top: 12px;
}

.card {
	width: min(720px, 92vw);
	min-height: 220px;
	border: 2px solid #111;
	border-radius: 16px;
	padding: 24px;
	background: #f6f6f6;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.label-text {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

select {
	padding: 10px 12px;
	border-radius: 10px;
	border: 2px solid #111;
	background: #fff;
	font-family: "Share Tech Mono", monospace;
	font-size: 14px;
}

.button-row {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

button {
	padding: 10px 18px;
	border-radius: 999px;
	border: 2px solid #111;
	background: #fff;
	font-family: "Share Tech Mono", monospace;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
}

button:hover {
	background: #111;
	color: #fff;
}

.make-panel {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hidden {
	display: none;
}

.make-panel.hidden {
	display: none;
}

.editable {
	border: 2px dashed #111;
	border-radius: 12px;
	padding: 12px;
	background: #fff;
	font-family: "Share Tech Mono", monospace;
	color: #111;
}

.single-line {
	min-height: 36px;
}

.multi-line {
	min-height: 160px;
	white-space: pre-wrap;
}

.bounce {
  display: inline-block;
}

.bouncee {
  display: inline-block;
}

.loading-text .bounce {
	animation: bounce 0.5s ease infinite alternate;
}

.loading-text .bouncee {
	animation: bouncee 0.5s ease infinite alternate;
}

.run-anim .bounce {
	animation: bounce 0.5s ease 3 alternate;
}

.run-anim .bouncee {
	animation: bouncee 0.5s ease 3 alternate;
}

.part1 {
  color: red; 
  
}

.part2 {
  animation-delay: 0.10s;


}

.part3 {
  animation-delay: 0.20s;
  color: blue; 
}

.part4 {
  
}

.loading-text .part4 {
	animation: colorChange 1s infinite alternate;
}

.run-anim .part4 {
	animation: colorChange 1s 3 alternate;
}

@keyframes colorChange {
  0% { color: blue; }
          12.5% { color: blue; }
          25% { color: red; }
      75% { color: red; }
      77.5% { color: blue; }
          100% { color: blue; }
  
      }

@keyframes bounce {
  from {
      transform: translateY(0);
  }
  to {
      transform: translateY(-10px);
  }
}

@keyframes bouncee {
  from {
      transform: translateY(0px);
  }
  to {
      transform: translateY(-10px);
  }
}
