/*--- MAIN ---*/
main {
  background: rgb(250,250,250);
  display: flex;
  flex-direction: column;
}

.site_title {
  padding: 10vh 0;
  display: none;
}

.logo {
  /*background: #a48f8a;/**/
  height: 8vw;
  width: 8vw;
  min-width: 150px;
  min-height: 150px;
  margin: 10vh auto;
  background-image: url(../img/logo_full_b.png);
  background-position: center;
  background-size: cover;
}

.gallery_select {
  width: 100vw;
  height: auto;
  display: flex;
  flex-direction: column;
  align-content: space-evenly;
}

.gallery_cover {
  background-size: cover;
  width: 100vw;
  height: calc(100vh / 3);
  display: flex;
  justify-content: center;
  align-content: space-evenly;
  transition: all 1s;
  /* margin-top: 10vh;*/
}

.gallery_cover p {
  margin: auto;
	font-size: var(--big-fs-l);
}

.gallery_cover:hover {
  background-color: rgb(32,32,32);
  background-blend-mode: exclusion;
}