*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 2.2em;
  background-color: rgb(248, 240, 200);
}

div {
    border: 2px solid black;
    padding: 20px;
}

h1 {
  margin-bottom: 1rem;
  color: rgb(28, 104, 4);
}

.item-list {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: .5rem;
  color: rgb(28, 104, 4);
}

.item-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 200px;
  text-transform: uppercase;
}

.favorite-icon {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2rem;
}

.filled {
  color: red;
}
