body {
  background-color: var(--bg-color);
}


main {
  display: flex;
  justify-content: center;
  padding: 5%;
  gap: 3%;
}


.popup {
  position: static;
  transition: width 0.3s, height 0.3s;
  cursor: pointer;
}
.popup:hover {
  width: 17%;
  height: 32%;
}
.popup section {
  text-align: center;
  padding: 15% 0;
}


