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

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

body {
  font-family: Gilroy, system-ui, -apple-system, sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

main {
  height: 100%;
  width: 100%;
  display: flex;
  gap: 0.3rem;
}
main section {
  height: 100%;
  flex-grow: 1;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
main section:hover {
  flex-grow: 3;
}
main section:nth-child(1) {
  background-image: url("./assets/buddha.png");
}
main section:nth-child(2) {
  background-image: url("./assets/2.jpg");
}
main section:nth-child(3) {
  background-image: url("./assets/3.jpg");
}
main section:nth-child(4) {
  background-image: url("./assets/4.jpg");
}
main section:nth-child(5) {
  background-image: url("./assets/5.jpg");
}/*# sourceMappingURL=style.css.map */