* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  gap: 20px;
}

main {
  height: 100%;
  width: 100%;
  display: flex;
  gap: 10px;
}
main section {
  height: 100%;
  flex-grow: 1;
  background-size: cover;
  transition: all 5s linear;
  cursor: pointer;
}
main section:hover {
  flex-grow: 4;
}
main section:nth-child(1) {
  background-image: url(./Image.jpg);
}
main section:nth-child(2) {
  background-image: url(./Image_1.jpg);
}
main section:nth-child(3) {
  background-image: url(./Image_2.jpg);
  background-position: center;
}
main section:nth-child(4) {
  background-image: url(./Image_3.jpg);
  background-position: center;
}
main section:nth-child(5) {
  background-image: url(./image_4.jpg);
  background-position-x: left;
  background-position: center;
}/*# sourceMappingURL=style.css.map */