* {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

body {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}
body .imgbox {
  cursor: pointer;
  width: 50vw;
  height: 50vw;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
body .imgbox:hover {
  opacity: 0.9;
}
body .imgbox img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=style.css.map */