html {
  box-sizing: border-box;
  background: url("oh-la-la.jpeg") center no-repeat;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

svg {
  fill: white;
  background: rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 50%;
  width: 200px;
  margin-bottom: 50px;
}

.wrapper {
  padding: 20px;
  max-width: 350px;
  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(50px);
}

h2 {
  text-align: center;
  margin: 0;
  font-weight: 200;
}

.plates {
  margin: 0;
  padding: 0;
  text-align: left;
  list-style: none;
}

.plates li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 0;
  font-weight: 100;
  display: flex;
}

.plates label {
  flex: 1;
  cursor: pointer;
}

.plates input {
  display: none;
}

.plates input + label:before {
  content: "⬜️";
  margin-right: 10px;
}

.plates input:checked + label:before {
  content: "🌮";
}

.add-items {
  margin-top: 20px;
}

input[type="submit"]:active {
  background: #ffae00;
  transform: scale(0.9);
}

input[type="submit"] {
  background: transparent;
  backdrop-filter: blur(50px);
  transform: scale(1.1);
}

.add-items input {
  margin: 5px;
  border-radius: 50px;
  padding: 10px;
  outline: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.btns-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-top: 15px;
}

button {
  background: transparent;
  color: black;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s;
  margin: 5px;
  border-radius: 50px;
  padding: 10px;
  outline: 0;
  box-shadow:
      inset 4px 4px 8px rgba(255, 255, 255, 0.6),
      inset -4px -4px 8px rgba(0, 0, 0, 0.1),
      2px 2px 10px rgba(0, 0, 0, 0.075);
}

button:hover {
  color: black;
  background-color: rgb(215, 159, 86);
  background-blend-mode: exclusion;
}

button:active {
  transform: scale(0.9);
}
