body {
  background-color: #343f51;
  font-family: Monaco, Consolas, "Lucida Console", monospace;
  color: white;
  margin: 0;
}

main {
  margin: 10px;
}

input {
  background-color: white;
  font-family: Monaco, Consolas, "Lucida Console", monospace;
  margin: 20px 0;
  padding: 15px;
  border: none;
  outline: none;
  border-radius: 5px;
  width: 40%;
  display: flex;
  font-size: 20px;
  align-items: center;
}

footer {
  text-align: center;
  padding-top: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 50px;
  background-color: black;
}

#toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

#toast.show {
  opacity: 1;
}
