html {
  padding: 0px 30px;
  min-height: fit-content;
  background-image:
    linear-gradient(90deg, rgb(3, 1, 99) 0%, rgb(0, 0, 53) 100%),
    radial-gradient(circle, rgba(0, 0, 61, 1) 20%, rgba(255, 255, 255, 0) 100%);
  background-blend-mode: overlay;
  height: -webkit-fill-available;
}

body {
  display: flex;
  flex-direction: column;
  color: #fff;
  align-items: stretch;
  margin: 0;
  padding: 0;
  font-family: 'Roboto Mono', monospace;
  justify-content: center;
  align-items: center;
  min-width: 320px;
  width: 100%;
}

main {
  margin: 30px 0px;
}

.title {
  font-size: 24px;
  font-weight: 600;
}

.logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
  filter: drop-shadow(0 4px 12px rgb(4, 1, 156));
}

.container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
  max-width: 400px; /* allows some padding room around 300px inputs */
  margin: 30px;
}

#help {
  align-self: flex-end;
  margin: 0.8rem;
}

input {
  width: 100%;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  border: none;
  border-radius: 999px;
  box-shadow: inset 0 4px 12px rgb(133, 132, 187);
  text-align: center;
  font-size: 0.9rem;
  font-family: 'Roboto Mono', monospace;
}

.result {
  background: #ffffff;
  color: #747474;
  user-select: all;
  cursor: text;
  overflow-wrap: break-word;
  box-shadow: inset 0 0px 12px rgba(0, 0, 0, 0.1);
}

button {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  border: none;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgb(133, 132, 187);
  text-align: center;
  font-size: 0.9rem;
  font-family: 'Roboto Mono', monospace;
  color: rgb(3, 1, 99);
}

.textButton {
  width: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  cursor: pointer;
  font-weight: 500;
  background-color: #fff;
  transition: background 0.2s ease;
}

.roundButton {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgb(133, 132, 187);
  text-align: center;
  font-size: 0.9rem;
  font-family: 'Roboto Mono', monospace;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  background-color: #fff;
  transition: background 0.2s ease;
  color: #030163;
  color: rgb(179, 255, 0);

}

#help {
  position: fixed;
  top: 0;
  right: 0;
}

#copyBtn {
  margin-top: 20px;
}

button:hover {
  background-color: #eee;
}

.toast {
  visibility: hidden;
  min-width: 200px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  font-family: 'Roboto Mono', monospace;
}

.toast.show {
  visibility: visible;
  opacity: 1;
}
