* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-size: 1rem;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  min-height: 100vh;
  background-color: #e6dcf3;
}

h2, h3 {
  margin-bottom: 1rem;
}

.header {
  display: flex;
  align-items: center;
  min-height: 8rem;
  background-color: #088A29;
  color: #fff;
  border-bottom: 2px solid #04B45F;
  box-shadow: 0 0 10px 2px #111a;
  z-index: 1;
}

.header__logo {
  background: url("../Images/logo.png") no-repeat;
  background-position-y: center;
  background-size: contain;
  height: 105px;
  min-width: 188px;
  margin: 1rem 2rem;
}

.header__nav-container {
  display: block;
  flex-grow: 1;
}

.header__title {
  padding: 1rem;
}

.topMenu {
  padding: 0 1rem 1rem 0;
  flex-wrap: wrap;
  display: flex;
}

.topMenu__link {
  padding: 1rem;
  margin-top: 0.5rem;
  line-height: 0;
  color: #fff;
  text-decoration: none;
  background-color: #088A29;
  border-radius: 8px;
}

.topMenu__link:hover {
  background-color: #04B45F;
}

.main {
  display: flex;
  flex-grow: 1;
}

.background-image {
  display: none;
}

.content {
  width: 100%;
  padding: 2rem;
  margin-bottom: -2rem;
  background-color: #fff;
  box-shadow: 0 0 10px 2px #111a;
}

.content a {
  color: #000;
}

.content__section {
  margin-bottom: 2rem;
}

.content__section p {
  margin-bottom: 0.5rem;
}

.footer {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  height: 2rem;
  background-color: #088A29;
  border-top: 2px solid #04B45F;
  box-shadow: 0 0 10px 2px #111a;
  font-size: 0.8rem;
}

.button {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  padding: 1rem;
  margin: 1rem 0;
  color: #000;
  background-color: #e6dcf3;
  border: 2px solid #5c4776;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.5s;
  cursor: pointer;
}

.button:hover {
  background-color: #a591bd;
}

.tile {
  padding: 1rem;
  margin-bottom: 2rem;
  background-color: #e6dcf3;
  border: 2px solid #5c4776;
  border-radius: 5px;
  box-shadow: 0 0 5px 2px #1118;
}

.tile__listing {
  border-collapse: collapse;
  width: 100%;
}

.tile__listing tr {
  border-bottom: 2px solid #a591bd;
}

.tile__listing tr:last-child {
  border-bottom: 0;
}

.tile__listing tr:last-child * {
  padding-bottom: 0;
}

.tile__listing tr:first-child * {
  padding-top: 0;
}

.tile__listing th,
.tile__listing td {
  text-align: left;
  padding: 0.5rem;
}

@media only screen and (min-width: 768px) {
  .background-image {
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    flex-grow: 1;
  }

  .content {
    width: 50%;
    border-right: 2px solid #5c4776;
  }
}
.header__menu-button {
  display: none;
}

@media only screen and (max-width: 700px) {
  .header__menu-button {
    display: block;
    position: absolute;
    right: 0;
    margin: 0 2rem;
    font-size: 2rem;
    font-weight: bold;
    border: 0;
    background-color: transparent;
    color: #fff;
    line-height: 2rem;
  }

  .header__menu-button--close {
    display: none;
    margin: 1rem;
    top: 0;
  }

  .header__menu-button:hover {
    background-color: transparent;
  }

  .header__nav-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    background-color: #088A29;
    padding: 1rem;
  }

  .topMenu {
    flex-direction: column;
    padding: 0;
  }

  .topMenu__link {
    margin: 0;
    padding: 1.5rem 1rem;
    border-top: 2px solid #04B45F;
    border-radius: 0;
  }

  .header__title {
    font-size: 1.5rem;
    margin-right: 3rem;
  }

  .header__logo {
    margin-left: 2rem;
    min-width: 0;
    width: 50%;
    max-height: 6rem;
  }
}
.content {
  width: 100%;
  border: 0;
}

.image-list {
  margin: 0 -1rem -1rem 0;
}

.image-list__image {
  width: calc(100% / 1 - 1rem);
  height: calc((100vw - 2 * 2rem + 1rem) / 1 - 1rem);
  display: inline-block;
  margin: 0 1rem 1rem 0;
  object-position: center;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid #5c4776;
  border-radius: 5px;
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 3;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  border-radius: 5px;
  border: 2px solid #5c4776;
  background-color: #fff;
}

.image-modal__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.modal-overlay {
  display: none;
  position: fixed;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  background-color: #000a;
}

.image-modal__button {
  cursor: pointer;
  padding: 0.5rem;
  text-align: center;
  line-height: 2rem;
  position: absolute;
  font-size: 2rem;
  font-weight: bold;
  top: 50%;
  transform: translateY(-50%);
  height: 35%;
  width: 4rem;
  background-color: transparent;
  color: #fff;
  text-shadow: 0px 0px 5px #000c;
  transition: background-color 0.5s;
}

.image-modal__button:hover {
  background-color: rgba(92, 71, 118, 0.7);
}

.button--close {
  padding: 0.5rem;
  text-align: center;
  line-height: 2rem;
  position: absolute;
  font-size: 2rem;
  margin: 0.5rem;
  top: 0;
  right: 0;
  transform: none;
  height: 3rem;
  width: 3rem;
}

.image-modal__button--prev {
  left: 0;
  border: 0;
  border-radius: 0 5px 5px 0;
}

.image-modal__button--next {
  right: 0;
  border: 0;
  border-radius: 5px 0 0 5px;
}

@media only screen and (min-width: 320px) {
  .image-list__image {
    width: calc(100% / 2 - 1rem);
    height: calc((100vw - 2 * 2rem + 1rem) / 2 - 1rem);
  }
}
@media only screen and (min-width: 480px) {
  .image-list__image {
    width: calc(100% / 3 - 1rem);
    height: calc((100vw - 2 * 2rem + 1rem) / 3 - 1rem);
  }
}
@media only screen and (min-width: 624px) {
  .image-list__image {
    width: calc(100% / 4 - 1rem);
    height: calc((100vw - 2 * 2rem + 1rem) / 4 - 1rem);
  }
}
@media only screen and (min-width: 768px) {
  .image-list__image {
    width: calc(100% / 5 - 1rem);
    height: calc((100vw - 2 * 2rem + 1rem) / 5 - 1rem);
  }
}
@media only screen and (min-width: 912px) {
  .image-list__image {
    width: calc(100% / 6 - 1rem);
    height: calc((100vw - 2 * 2rem + 1rem) / 6 - 1rem);
  }
}

/*# sourceMappingURL=gallery.css.map */
