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

html,
body {
  height: 100%;
  width: 100%;
}

main {
  height: 100%;
  width: 100%;
  display: flex;
  gap: 10px;
}
main section {
  height: 100%;
  flex-grow: 1;
  background-size: cover;
  background-position: center;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}
main section:hover {
  flex-grow: 2;
  cursor: pointer;
}
main section:nth-child(1) {
  background-image: url(ironman.jpg);
}
main section:nth-child(2) {
  background-image: url(black.jpg);
}
main section:nth-child(3) {
  background-image: url(moon.jpg);
}
main section:nth-child(4) {
  background-image: url(spiderman.jpg);
}
main section:nth-child(5) {
  background-image: url(batman.jpg);
}/*# sourceMappingURL=style.css.map */