*, *:before, *:after {
  box-sizing: border-box;
}

html {
  margin: 0;
  font-family: "Manrope", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: radial-gradient(circle at top, #1a1a2e, #0f0f1e);
}

.interact{
  color: white;
  background: none;
  resize: none;
  flex: 1 0 auto;
  border: none;
  overscroll-behavior-y: contain;
  scroll-snap-type: y proximity;
  scroll-snap-align: end;
  font-size: 1rem;
  font-family: "Manrope", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.interact:focus {
  border: none;
  outline: none;
}

.options {
  padding-top: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

/* Generate Button */
button {
  font-family: 'Courier New', monospace;
  color: #00ffff;
  /* background: linear-gradient(135deg, #00ffff, #0099cc); */
  background: none;
  border: 2px solid #00ffff;
  /* color: #000; */
  /* border: none; */
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s;
  font-family: "Manrope", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

button:hover {
  box-shadow: 0px 0px 12px rgba(0, 255, 255, 0.8);
}

input {
  accent-color: #00ffff;
}

h1, h2, h3 {
  text-align: center;
}

h2{
  margin-top: 0;
  color: #bbb;
  text-shadow: none;
  font-size: 1rem;
}

.card{
  color: #00ffff;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
  width: clamp(20rem, 50vw, 60rem);
  height: clamp(30rem, 75vh, 90rem);
  background: rgba(25, 25, 25, 0.6);
  border-radius: 2rem;
  box-shadow: 0px 0px 15px rgba(0, 255, 255, 0.2);
  padding: 0 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
}

@media (max-width:850px)  {
  .options {
    flex-direction: column;
  }
  button {
    margin-bottom: 2rem;
  }
  .card {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
  }
}