@font-face {
  font-family: "AltDefault";
  src: url(../Bitter.ttf);
}

html {
  background-color: #f0c090;
  font-family: "AltDefault", "sans-serif";
  font-size: 130%;
  color: #302010;
}

h1 {
  text-align: center;
  text-shadow: #30201045 3px 3px 1px;
}

.center {
  text-align: center;
}

form {
  margin: auto;
  padding: 10px;
  background-color: #302010;
  color: #f0c090;
  max-width: 45%;
  border-radius: 3px;
  text-align: center;
}

@keyframes pop {
  0% {
    transform: scale(0.95, 1.05);
  }
  100% {
    transform: scale(1, 1);
  }
}

.anim_pop {
  animation-name: pop;
  animation-fill-mode: forwards;
}

input {
  font-size: 90%;
  margin: 3px 2px;
  color: #f0c090 !important;
  border-color: #f0c090 !important;
  border-style: solid;
  background-color: #302010 !important;
  border-radius: 3px;
  animation-duration: 200ms;
  transition-duration: 50ms;
}

input::placeholder {
  color: #f0c09085;
}

input:hover {
  color: #f0c090 !important;
  border-color: #f0c090 !important;
  background-color: #302010 !important;
}

input:hover::placeholder {
  color: #f0c09085;
}

input:active {
  color: #302010 !important;
  border-color: #302010 !important;
  background-color: #f0c090 !important;
}

input:active::placeholder {
  color: #30201085;
}

#output {
  background-color: #302010;
  padding: 10px;
  margin: auto;
  margin-top: 30px;
  width: 45%;
  border-radius: 3px;
  color: #f0c090;
  text-align: center;
}

input:-webkit-autofill,
input:-webkit-autofill:hover {
  -webkit-text-fill-color: #f0c090;
  box-shadow: #302010 0px 0px 3000px inset;
}

input:-webkit-autofill:active {
  -webkit-text-fill-color: #302010;
  box-shadow: #f0c090 0px 0px 3000px inset;
}
