html, body {margin: 0; height: 100%; overflow: hidden}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #44818e;
  color: white;
  min-height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
}

img {
  max-width: 300px;
  height: auto;
}

p {
  font-size: 24px;
}

#submit {
  color: white;
  background-color: #008CBA;
}

#searchQuery {
  color: #000000;
}

.footer {
  grid-row-start: 2;
  grid-row-end: 3;
}

.text-center {
  text-align: center;
}

.thumbnail {
  width: 100px;
  height: 100px;
}

.unselectable {
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+/Edge */
  user-select: none;
  /* Standard */
}
