body {
  background-image: url("background.jpg");
  background-size: cover;
  color: black;
  font-family: "TheSimpleLife";
}

@font-face {
  font-family: "TheSimpleLife";
  src: url("StampatelloFaceto.woff2") format("woff2");
}

#decoration {
  display: flex;
  justify-content: center;
  width: 250px;
  top: 0;
  margin-right: auto;
  margin-left: auto;
}

.text {
  opacity: 0;
  transition: transform 0.3s cubic-bezier(.17,.67,.83,1.53);
  border: 3px solid;
  border-radius: 7px;
  background-color: antiquewhite;
  border-color: burlywood;
  text-align: center;
  top: -10px;
  width: 50%;
  height: 60px;
  line-height: 60px;
  z-index: -1;
}

.wish {
  height: 280px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(.17,.67,.83,1.53);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wish:hover {
  transform: scale(1.12);
}

.container {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
}

.sparkles {
  position:absolute;
  top: 100px;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  z-index: -1;
  
}

.sparkle {
  opacity: 0;
  width: 95%;
}