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

html {
  scroll-behavior: smooth;
}

body {
  background-color: black;
  color: black;
  font-family: "Nunito Sans";
  font-size: 16px;
  list-style-position: inside;
  overflow-x: hidden;
}
body p {
  padding-bottom: 1em;
}

.hero {
  width: 100%;
  margin-top: 4em;
  padding-left: 2em;
  padding-right: 2em;
  animation: zoom 1.4s ease;
}

@keyframes zoom {
  0% {
    scale: 0%;
  }
  50% {
    scale: 105%;
  }
  100% {
    scale: 100%;
  }
}
.main {
  display: flex;
  justify-content: center;
}

.flex-row, .some, .flex-content, .flex-content-even {
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  width: 100%;
  -moz-column-gap: 2em;
       column-gap: 2em;
}

.flex-column {
  flex-flow: column-reverse wrap;
  flex: 1;
}

.flex-content, .flex-content-even {
  max-width: 1268px;
  padding: 3em;
  padding-left: 2em;
  padding-right: 2em;
}

a {
  color: #e6007e;
  text-decoration: none;
}
a:hover {
  color: #00b3ff;
}

.anchor {
  padding-top: 5.6em;
  margin-top: -5.6em;
  visibility: hidden;
}

.flex-content-even {
  justify-content: space-evenly;
  padding: 0;
}

.footer {
  background-color: black;
  color: #7f7f7f;
  width: 100%;
  text-align: center;
  padding: 1em;
}

.bigtext, .bigtext-light {
  font-family: "Orbitron", serif;
  font-size: 2em;
  text-align: center;
  color: black;
  padding-bottom: 1.5em;
  width: 100%;
}

.bigtext-light {
  color: white;
}

.smalltext, .smalltext-center {
  padding-bottom: 3.5em;
  font-size: 1em;
  text-align: left;
}
.smalltext p, .smalltext-center p {
  padding-bottom: 1.5em;
}
.smalltext b, .smalltext-center b {
  font-weight: bold;
}

.smalltext-center {
  text-align: center;
}

.mediumtext-center {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  padding-bottom: 1em;
}

.photo, .photo-round {
  width: 100%;
  border-radius: 1em;
  margin-bottom: 3em;
  max-height: 100vh;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.15));
}

.photo-round {
  border-radius: 100%;
  padding-left: 1em;
  padding-right: 1em;
  min-width: 212px;
  max-width: 500px;
  filter: none;
  -webkit-filter: none;
}

.box {
  padding: 1em;
  border-radius: 1em;
  margin-bottom: 1.5em;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.box .smalltext-center {
  padding-bottom: 0;
}

.logo {
  max-width: 165px;
  border-radius: 1em;
  transition: transform 0.2s;
  margin-bottom: 3em;
  width: 100%;
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.15));
}
.logo:hover {
  transform: scale(1.1);
  animation-fill-mode: forwards;
}

@keyframes saturation {
  from {
    filter: grayscale(100%);
  }
  to {
    filter: grayscale(0%);
  }
}
#myImg {
  border-radius: 1em;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
  margin-bottom: 2em;
}

.gallery {
  -moz-column-count: 3;
       column-count: 3;
  gap: 2em;
  padding-bottom: 2em;
}

.product {
  margin-bottom: 2em;
  border-radius: 1em;
  min-width: 212px;
  width: 100%;
}
.product:hover {
  filter: opacity(0.5);
  cursor: pointer;
}

.story {
  color: black;
  border-radius: 1em;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 2em;
  padding: 2em;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.story .smalltext, .story .smalltext-center {
  padding-bottom: 0;
}

@media (max-width: 1279px) {
  .gallery {
    -moz-column-count: 2;
         column-count: 2;
    padding-bottom: 2em;
  }
}
@media (max-width: 767px) {
  .gallery {
    -moz-column-count: 1;
         column-count: 1;
    padding-bottom: 0em;
  }
}
@media (max-width: 460px) {
  .flex-column {
    min-width: 212px;
  }
  .story {
    min-width: 212px;
  }
  .photo, .photo-round {
    min-width: 212px;
  }
}
.background {
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: -1;
  background-image: linear-gradient(#f0ea1a, #00b3ff);
  top: 58px;
}

@keyframes slide {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translate(-626px);
  }
}
.header {
  background-color: #f0ea1a;
  position: fixed;
  width: 100%;
  z-index: 1;
  top: 0;
}
.header ul {
  list-style: none;
  overflow: hidden;
}
.header li a {
  display: block;
  padding: 1em;
  text-decoration: none;
  color: black;
  text-align: center;
}
.header li a:hover {
  color: #00b3ff;
}
.header .title {
  font-family: "trajan";
  color: white;
  font-size: 2em;
  padding: 10px 0px 4px 20px;
}
.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}
.header .menu-icon {
  cursor: pointer;
  float: right;
  padding: 28px 20px;
}
.header .menu-icon .navicon {
  background: #7f7f7f;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 18px;
}
.header .menu-icon .navicon:before {
  background: #7f7f7f;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
  top: 5px;
}
.header .menu-icon .navicon:after {
  background: #7f7f7f;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
  top: -5px;
}
.header .menu-button {
  display: none;
}
.header .menu-button:checked ~ .menu {
  max-height: 100vh;
}
.header .menu-button:checked ~ .menu-icon .navicon {
  background: transparent;
}
.header .menu-button:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}
.header .menu-button:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}
.header .menu-button:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.header .menu-button:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

@media (min-width: 1215px) {
  .header ul {
    display: flex;
  }
  .header li {
    width: 100%;
  }
  .header li a {
    padding: 20px 30px;
  }
  .header .menu {
    clear: none;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
  .hero {
    margin-top: 6em;
  }
}
.section {
  width: 100%;
}

.some {
  justify-content: space-evenly;
}
.some a {
  color: rgba(255, 255, 255, 0.2);
  padding-bottom: 2em;
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.15));
  transition: transform 0.2s;
}
.some a:hover {
  transform: scale(1.2);
  animation-fill-mode: forwards;
}/*# sourceMappingURL=main.css.map */