body {
  font-family: "Open Sans", sans-serif;
  color: #333;
  background-color: #323232;
}

html, body {
  overscroll-behavior: none;
}

#gallery {
  display: grid;
  width: 80%;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-gap: 0px;
  margin-top: 30px;
  margin-bottom: 30px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.tile {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  object-fit: cover;
  justify-content: center;
  align-items: center;
}

.tile img {
  padding: 0;
  margin: 0;
  display: block;
  justify-content: center;
  align-items: center;
}

#fullpage {
  text-align: center;
  justify-content: center;
  align-items: center;
}

#fullpage > div {
  background-color: #323232;
  display: flex;
  font-size: 2rem;
  flex-direction: column;
  padding: 10px;
  justify-content: center;
  height: 100vh;
}

/* #fullpage > div:nth-child(even) {
  background-color: #282c34;
  color: #ffffff;
} */

#fullpage h2 {
  margin: auto;
  width: 75%;
  text-align: center;
  color: #e0e0e0;
  font-size: 3.5rem;
}

#fullpage a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 2rem;
  padding: auto;
  margin: auto;
}

#fullpage img {
  margin: auto;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center 10%;
}

/* button {
  cursor: pointer;
  margin-right: 0;
  margin-bottom: 0;
} */

select,
input, button {
  display: inline-block;
  padding: 1rem 1rem;
  background-color: #282828;
  color: #d0d0d0;
  font-size: 2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  font-size: 2rem;
  margin-bottom: 5px;
}