* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  min-height: 100vh;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  background: transparent;
}

.gallery {
  width: 100%;
  display: flex;
}
.gallery img {
  height: 100vh;
  flex: 1;
  transition: 0.3s;
  object-fit: cover;
}
.gallery img:hover {
  flex: 5;
  filter: contrast(120%);
}

/*# sourceMappingURL=style.css.map */
