* {
  box-sizing: border-box;
}

body {
  margin: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fafafa;
  color: #212121;
  line-height: 1.5;
}

input {
  padding: 8px;
  font: inherit;
}

button {
  padding: 8px 12px;
  cursor: pointer;
}
.gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}
.style {
  height: 400px;
  width: 600px;
  margin: 30px;
  border-radius: 5px;
  transition: box-shadow 500ms cubic-bezier(0.4, 0, 0.2, 1), border 500ms cubic-bezier(0.4, 0, 0.2, 1),
    border-top-width 500ms cubic-bezier(0.4, 0, 0.2, 1), border-bottom-width 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.style:hover {
  border: 25px solid #fafafa;
  border-top-width: 35px;
  border-bottom-width: px;
  box-shadow: 3px 3px 6px 4px #888;
}
