body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-align: center;
  overflow: hidden;
}

#name-input {
  margin-left: 1%;
}

.hearts {
  position: absolute;
  background: url(images/heart-flat-icon.png);
  background-size: cover;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: animateHearts 2s linear infinite;
}

@keyframes animateHearts {
  0% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -1000%);
    opacity: 0;
  }
}

#myLove {
  display: block;
}

.button {
  transition: left 0.2s ease 0s, top 0.2s ease 0s, background 0.2s ease 0s,
    color 0.2s ease 0s, box-shadow 0.2s ease 0s;
  box-shadow: 5px 5px 6px 1px #444444;
  height: 70px;
  background: white;
  border: 1px solid black;
  color: black;
  border-radius: 00px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: "Franchise";
  font-size: 20px;
  width: 200px;
  position: absolute;
  left: 40%;
  top: 45%;
}

#button:active {
  box-shadow: 0px 0px 0px 0px transparent;
  background: black;
  color: white;
}

.button::after {
  box-shadow: inset rgb(68 68 68) 7px 9px 10px 1px;
  opacity: 0;
  transition: 0.2s ease 0s;
  width: 100%;
  height: 100%;
}

.button:hover::after {
  box-shadow: inset rgb(68 68 68) 7px 9px 10px 1px;
  opacity: 1;
}

#funds {
  background: #00b289;
  color: white;
  width: 100px;
  height: 40px;
  font-size: 20px;
  border: 0px solid black;
  font-family: "Franchise";
}

#total {
  color: #00b289;
  position: absolute;
  border: 1px solid #00b289;
  font-size: 20px;
  font-style: bold;
  width: 60px;
  height: 40px;
  background: white;
  margin-left: -0.2%;
}

#div {
  height: 100%;
  width: 100%;
  display: none;
}

#question {
  top: 5%;
  left: 20%;
  background: white;
  color: black;
  margin-left: 0px;
  border: 1px solid black;
  font-family: Franchise;
  font-size: 50px;
  box-shadow: black 5px 5px 0px 1px, black 4px 4px 0px 1px,
    black 3px 3px 0px 1px, black 2px 2px 0px 1px, black 1px 1px 0px 1px,
    black 0px 0px 0px 1px;
  margin-top: 0px;
  transition: all 0.2s ease 0s;
  position: fixed;
}
