body {
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
  color: white;
  text-shadow: 1px 1px 3px #690fe7; /* Minimal shadow */
  background: url("kitten.jpg") center/cover no-repeat;
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  color: white; /* Text color for contrast */
  padding: 20px;
  border-radius: 8px; /* Optional: Adds rounded corners */
  height: fit-content;
  max-width: fit-content;
}
h1 {
  margin-top: 10px;
  margin-bottom: 10px;
}

h2 {
  font-size: 50px;
  margin-top: 0;
  margin-bottom: 20px;
}

button {
  border: none;
  padding-top: 10px;
  padding-bottom: 10px;
  color: white;
  font-weight: bold;
  width: 200px;
  margin-bottom: 5px;
  border-radius: 5px;
}

#increment-btn {
  background: #8565b1;
}

#save-btn {
  background: #ae52a3;
}
