@import url("https://fonts.googleapis.com/css2?family=Courgette&display=swap");
* {
  box-sizing: border-box;
}

html {
  background-color: black;
  color: #D9A407;
  font-family: "Verdana", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

img {
  border-style: none;
}

a {
  color: #A63F03;
}

h1 {
  margin: 0 0 1rem 0;
  font-size: 1.75rem;
  font-weight: bold;
}

h2 {
  margin: 1rem 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: bold;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
}

#header {
  background-color: #A63F03;
  color: #F2CC0C;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
}
#header #hp1 {
  font-family: "Courgette", cursive;
}

@media only screen and (min-width: 768px) {
  body {
    margin-top: 6rem;
  }

  #header {
    padding: 0 2rem 0.5rem 2rem;
    height: 6rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  #header #hp1 {
    flex: 1 0 120px;
  }
  #header #hp1 #navtoggle {
    display: none;
  }
  #header #hp1 #title {
    font-size: 3rem;
  }
  #header #menu {
    flex: 1 0 120px;
    text-align: right;
    padding-bottom: 0.5rem;
  }
  #header #menu a {
    display: inline-block;
    transition: color 0.2s ease-out;
    position: relative;
    letter-spacing: 1px;
    color: #F2CC0C;
    font-size: 1.25rem;
    padding: 1rem 1rem 0.5rem 1rem;
    text-decoration: none;
  }
  #header #menu a:not(:last-child) {
    margin-right: 1rem;
  }
  #header #menu a:hover {
    color: white;
  }
  #header #menu a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 2px solid #F2CC0C;
    transform: scaleX(0);
    transition: all 0.2s ease-out;
  }
  #header #menu a:hover:before, #header #menu a:focus:before {
    transform: scaleX(1);
    border-bottom-color: white;
  }

  .mtext {
    padding: 3rem 2rem;
  }
}
@media only screen and (max-width: 767.98px) {
  body {
    margin-top: 4rem;
  }

  #header {
    padding: 0;
    height: 4rem;
  }
  #header #hp1 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: #A63F03;
  }
  #header #hp1 #navtoggle {
    display: block;
    border: 2px solid #F2CC0C;
    padding: 8px 6px;
    border-radius: 6px;
    float: right;
    margin: 1rem 1rem 0 0;
  }
  #header #hp1 #navtoggle .bar {
    display: block;
    width: 20px;
    margin-bottom: 4px;
    height: 2px;
    background-color: #F2CC0C;
    border-radius: 1px;
  }
  #header #hp1 #navtoggle .bar:last-child {
    margin-bottom: 0;
  }
  #header #hp1 #title {
    font-size: 2rem;
    margin: 0.5rem 0 0 1rem;
  }
  #header #menu {
    z-index: 5;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #A63F03;
    transition: transform 0.2s ease-out;
    transform: translateY(0);
  }
  #header #menu.open {
    transform: translateY(100%);
  }
  #header #menu a {
    display: block;
    letter-spacing: 1px;
    color: #F2CC0C;
    border-top: solid #F2CC0C 1px;
    font-size: 1.25rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
  }
  #header #menu a:last-child {
    border-bottom: solid #F2CC0C 1px;
  }
  #header #menu a:hover {
    color: white;
  }

  .mtext {
    padding: 2rem 1rem;
  }
}
.gallery {
  padding: 3rem;
  display: block;
  gap: 3rem;
}
@media screen and (max-width: 599.98px) {
  .gallery {
    columns: 1;
  }
}
@media screen and (min-width: 600px) and (max-width: 799.98px) {
  .gallery {
    columns: 2;
  }
}
@media screen and (min-width: 800px) and (max-width: 1279.98px) {
  .gallery {
    columns: 3;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1919.98px) {
  .gallery {
    columns: 4;
  }
}
@media screen and (min-width: 1920px) {
  .gallery {
    columns: 5;
  }
}
.gallery figure {
  break-inside: avoid;
  margin: 0 0 3rem 0;
}
.gallery figure img {
  width: 100%;
  display: block;
  border-radius: 1rem;
}

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