/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
* {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  width: 100vw;
  height: 100%;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Arvo", serif;
}

h1, .h1 {
  font-size: 2.986rem;
}

h2, .h2 {
  font-size: 2.488rem;
}

h3, .h3 {
  font-size: 2.074rem;
}

h4, .h4 {
  font-size: 1.728rem;
}

h5, .h5 {
  font-size: 1.44rem;
}

h6, .h6 {
  font-size: 1.2rem;
}

p {
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

small, .small {
  font-size: 0.833rem;
}

i {
  font-family: "Arvo", serif;
}

a {
  text-decoration: none;
  color: rgb(237, 197, 171);
}
a:hover {
  text-decoration: underline;
}

.button {
  background-color: rgb(41, 43, 46);
  color: rgb(232, 234, 239);
  border-radius: 0.25rem;
  border-style: none;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  max-width: none;
  min-height: 2rem;
  min-width: 0.5rem;
  outline: none;
  overflow: hidden;
  padding: 0.5rem 1.25rem 0.5rem;
  position: relative;
  text-align: center;
  text-transform: none;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
}
.button.primary {
  background-color: rgb(139, 157, 119);
  color: rgb(232, 234, 239);
}
.button.secondary {
  background-color: rgb(33, 112, 116);
  color: rgb(232, 234, 239);
}
.button.highlight {
  background-color: rgb(237, 197, 171);
  color: rgb(232, 234, 239);
}
.button.black {
  background-color: rgb(41, 43, 46);
  color: rgb(232, 234, 239);
}
.button.darkgray {
  background-color: rgb(68, 70, 74);
  color: rgb(232, 234, 239);
}
.button.midgray {
  background-color: rgb(120, 122, 126);
  color: rgb(232, 234, 239);
}
.button.lightgray {
  background-color: rgb(183, 185, 190);
  color: rgb(41, 43, 46);
}
.button.white {
  background-color: rgb(232, 234, 239);
  color: rgb(41, 43, 46);
}
.button.success {
  background-color: rgb(139, 157, 119);
  color: rgb(232, 234, 239);
}
.button.warning {
  background-color: rgb(184, 168, 77);
  color: rgb(232, 234, 239);
}
.button.error {
  background-color: rgb(237, 197, 171);
  color: rgb(232, 234, 239);
}
.button.fill {
  width: 100%;
  height: 100%;
  font-size: 2rem;
  align-content: center;
}
.button:hover, .button:focus {
  opacity: 0.75;
}

body {
  background-color: rgb(41, 43, 46);
  font-family: "Open Sans", sans-serif;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  color: rgb(232, 234, 239);
  line-height: 1.5;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.message, .loading {
  position: fixed;
  display: grid;
  top: 3rem;
  left: 3rem;
  right: 3rem;
  bottom: 3rem;
  padding: 0.5rem 1.5rem;
  font-size: 1em;
  border-radius: 0.25rem;
  box-shadow: 0 0 3rem rgb(0, 0, 0);
  z-index: 1;
  align-items: center;
  justify-content: center;
}
.message .message-text, .loading .message-text {
  text-align: center;
  margin-bottom: 2rem;
}
.message .message-text .large-icon, .loading .message-text .large-icon {
  font-size: 10rem;
  margin-bottom: 2rem;
}

.error {
  background-color: rgb(237, 197, 171);
  color: white;
}

.success {
  background-color: rgb(139, 157, 119);
  color: white;
}

.container {
  display: grid;
  height: 100%;
  grid-template-rows: 8rem auto 8rem;
  grid-gap: 1rem;
}
.container main {
  height: 100%;
}
.container main .image {
  height: 100%;
  max-height: 100%;
  padding: 1rem;
}
.container main .image label {
  display: block;
  box-sizing: border-box;
  height: 100%;
  cursor: pointer;
  border: 0.125rem rgb(139, 157, 119) dotted;
  border-radius: 1rem;
  color: rgb(139, 157, 119);
  align-content: center;
  text-align: center;
}
.container main .image label h2 {
  margin: 1rem;
}
.container main .image label input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.container main .image label .preview {
  width: 100%;
  height: 100%;
  display: none;
  overflow: hidden;
  position: relative;
}
.container main .image label .preview img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  translate: -50%;
  border-radius: 1rem;
}
.header-gallery {
  height: 8rem;
  margin-bottom: 1rem;
}

.photo-gallery {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  margin: 0 1rem;
}
.photo-gallery .photo {
  max-width: 100%;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  animation: fadeIn 2s;
}
.photo-gallery .photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.empty-gallery {
  margin: 3rem 1rem;
}

.footer-gallery {
  height: 8rem;
  margin-top: 1rem;
}

@media all and (max-width: 780px) {
  .form-container {
    width: auto;
  }
}
@media all and (max-width: 400px) {
  .form-container {
    padding: 0px 20px;
  }
  .tile-container {
    width: auto;
  }
  input,
  textarea,
  select {
    width: 100%;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.show {
  display: block;
}

.hide {
  display: none;
}

.loading {
  display: none;
}

.lds-hourglass,
.lds-hourglass:after {
  box-sizing: border-box;
}

.lds-hourglass {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-hourglass:after {
  content: " ";
  display: block;
  border-radius: 50%;
  width: 0;
  height: 0;
  margin: 8px;
  box-sizing: border-box;
  border: 32px solid rgb(232, 234, 239);
  border-color: rgb(232, 234, 239) transparent rgb(232, 234, 239) transparent;
  animation: lds-hourglass 1.2s infinite;
}

@keyframes lds-hourglass {
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    transform: rotate(900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    transform: rotate(1800deg);
  }
}
.min-safe-h-screen {
  /* equivalent to 100dvh in major browsers */
  min-height: calc(100vh - env(safe-area-inset-bottom, 0) - env(safe-area-inset-top, 0));
}

@supports (-webkit-touch-callout: none) {
  .min-safe-h-screen {
    /* for ios safari 15, safe-area-inset-bottom is 0, so a special fix apply here */
    min-height: -webkit-fill-available;
  }
}/*# sourceMappingURL=style.css.map */