* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

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

main {
  height: 100%;
  width: 100%;
  display: flex;
}
main section {
  height: 100%;
  flex-grow: 1;
  border: 1vh solid black;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 9;
  display: flex;
  align-items: flex-end;
  text-align: center;
  transition: all 0.5s ease-out;
}
main section .cover {
  height: 100%;
  width: 100%;
  background: rgba(56, 55, 55, 0.4941176471);
  position: absolute;
  top: 0;
  z-index: 10;
}
main section .textCont {
  width: 100%;
  padding: 10px;
  text-align: center;
  color: white;
  position: absolute;
}
main section:hover {
  flex-grow: 1.5;
}
main section:hover .cover {
  opacity: 0;
}
main section:nth-child(1) {
  background-image: url("https://i.pinimg.com/736x/67/dc/c1/67dcc164f732e4ef9d29cd3404bd4d1d.jpg");
}
main section:nth-child(2) {
  background-image: url("https://i.pinimg.com/1200x/db/e7/30/dbe730966c0b43e866cd463bf009ad49.jpg");
}
main section:nth-child(3) {
  background-image: url("https://i.pinimg.com/1200x/e7/0a/41/e70a414e42a90b63f3deb698027d252f.jpg");
}
main section:nth-child(4) {
  background-image: url("https://i.pinimg.com/736x/a5/b6/02/a5b60298e3e8c4321704978bd89cc299.jpg");
}
main section:nth-child(5) {
  background-image: url("https://i.pinimg.com/736x/a9/3d/a5/a93da587fd2e0d507e1b3fc7cf40c7bc.jpg");
}/*# sourceMappingURL=style.css.map */