/* Global Styles */

* {
  box-sizing: border-box;
}

/* Page Styles */

.search-bar {
  display: block;
  margin: auto;
  padding-top: 15px;
  max-width: 600px;
  max-height: 600px;
  text-align: center;
}

.search-bar input {
  -webkit-appearance: none;
  border-radius: 5px;
  height: 50px;
  min-width: 250px;
  width: 70%;
  border: 2px solid rgba(201, 200, 200, 0.8);
  padding-top: 0;
}

.search-bar ::placeholder {
  color: rgb(110, 109, 109);
  font-size: 14px;
  overflow: visible;
}

.gallery {
  display: grid;
  max-width: 1000px;
  margin: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  justify-content: center;
  align-content: center;
  grid-template-columns: repeat(auto-fit, minmax(200px, 200px));
  grid-template-rows: repeat(auto-fit, minmax(200px, 200px));
  grid-gap: 20px;
}

.non-matched-image {
  display: none;
}