@font-face {
  font-family: Karla;
  src: url(../fonts/Karla-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-family: KarlaBold;
  src: url(../fonts/Karla-Bold.ttf);
  font-display: swap;
}
@font-face {
  font-family: KarlaItalic;
  src: url(../fonts/Karla-Italic.ttf);
  font-display: swap;
}
@font-face {
  font-family: KarlaBoldItalic;
  src: url(../fonts/Karla-BoldItalic.ttf);
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Karla;
}

html {
  background-color: #dbf4f9;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-width: 100vw;
  width: 100%;
  position: fixed;
  margin-bottom: 15rem;
  overflow-x: hidden;
  min-height: 100vh;
  height: 100%;
}

a {
  text-decoration: none;
}
a.instagram {
  cursor: pointer;
}
a.instagram img.instagram {
  color: black;
  width: 25px;
  transition: backgroundColor 0.3s ease;
}
a.instagram img.instagram:hover {
  background-color: #f0f0f0;
}

ul {
  list-style-type: none;
}

p {
  font-size: 1.25rem;
  line-height: 2rem;
}

h1 {
  letter-spacing: 0.25rem;
  font-weight: 600;
  font-size: 1.8rem;
}

button {
  outline: none;
  text-align: center;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
.snackbar {
  visibility: hidden;
  min-width: 250px;
  width: 20rem;
  max-width: 95vw;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  bottom: 30px;
  font-size: 17px;
  margin-left: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.snackbar.success {
  background-color: #00a9a2;
}
.snackbar.error {
  background-color: red;
}
.snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

nav {
  z-index: 10;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
}
nav div.nav {
  display: block;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}
nav div.nav div.drawerOpenerContainer {
  display: flex;
  flex-direction: row;
  width: calc(100% - 3rem);
  align-content: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
nav div.nav div.drawerOpenerContainer button {
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}
nav div.nav div.drawerOpenerContainer button.search > img {
  width: 30px;
}
nav div.nav div.drawerOpenerContainer button > img.darkMenu {
  width: 30px;
}
nav div.nav .overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  padding-top: 0.5rem;
}
nav div.nav .overlay div.blocker {
  opacity: 0;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
nav div.nav .overlay div.drawer {
  max-width: 25rem;
  position: fixed;
  top: 0;
  left: -20rem;
  height: 100%;
  width: 100%;
  background-color: white;
  z-index: 2;
}
nav div.nav .overlay div.drawer ul {
  max-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  margin-top: 6rem;
  z-index: 2;
}
nav div.nav .overlay div.drawer ul li {
  padding: 1rem;
}
nav div.nav .overlay div.drawer ul li#createdBy {
  text-align: center;
  font-size: 1rem;
  font-weight: 300;
}
nav div.nav .overlay div.drawer ul li#createdBy a,
nav div.nav .overlay div.drawer ul li#createdBy a:visited {
  color: black;
  transition: color 0.3s ease;
}
nav div.nav .overlay div.drawer ul li#createdBy a:hover {
  color: #00a9a2;
}
nav div.nav .overlay div.drawer ul li span.underline:after {
  content: "";
  display: block;
  width: 0px;
  height: 2px;
  opacity: 0;
}
nav div.nav .overlay div.drawer ul li span.underline.selected::after {
  margin-left: 25%;
  width: 50%;
  background: #00a9a2;
  opacity: 1;
}
nav div.nav .overlay div.drawer ul li span a.navLink {
  color: black;
  transition: color 0.3s ease;
}
nav div.nav .overlay div.drawer ul li span a.navLink:hover {
  color: #b1b1b1;
}
nav div.nav .overlay div.drawer ul li span a.instagram {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav div.nav .overlay div.drawer ul li span a.instagram img.instagram {
  transform: translateX(-75%);
}
nav div.nav .overlay div.drawer ul li .close {
  position: absolute;
  right: 32px;
  top: 32px;
  height: 32px;
  width: 32px;
  border: none;
  outline: none;
  background-color: transparent;
  transition: opacity 0.3s ease;
}
nav div.nav .overlay div.drawer ul li .close:hover {
  opacity: 0.3;
  cursor: pointer;
}

input,
textarea {
  width: 100%;
  margin-bottom: 1rem;
  margin-top: 1rem;
  font-size: 1.25rem;
  border-radius: 5px;
  border-color: transparent;
  padding: 0.5rem;
}

input {
  height: 3rem;
}

input:not([type=submit]):hover,
textarea:hover {
  border: 3px solid black;
}

input[type=submit] {
  background-color: #00a9a2;
  border-color: #00a9a2;
  width: 50%;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 5px;
}

input[type=submit]:hover {
  cursor: pointer;
}

footer {
  z-index: 0;
  height: 200px;
  width: 100%;
  background-color: white;
  position: relative;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15rem;
}
footer a.instagram {
  position: absolute;
  left: 5%;
}
footer p.copywrite {
  width: 500px;
  text-align: center;
}

.flipCard {
  background-color: transparent;
  perspective: 1000px;
  max-width: 400px;
  width: 400px;
  height: 533px;
  max-height: 533px;
  min-height: 283px;
  min-width: 250px;
  flex: 1 0 400px;
  margin-top: 1rem;
  margin-bottom: 10px;
  position: relative;
  top: 0;
  transition: top 0.6s ease;
}
.flipCard .innerCard {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  transform: rotateY(180deg);
  border-radius: 10px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.3), 0 12px 40px 0 rgba(0, 0, 0, 0.29);
}
.flipCard .innerCard .frontCard,
.flipCard .innerCard .backCard {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
}
.flipCard .innerCard .frontCard {
  transform: rotateY(180deg);
}
.flipCard .innerCard .frontCard img {
  width: 100%;
  height: 100%;
  z-index: 100;
  border-radius: 10px;
}
.flipCard .innerCard .backCard {
  background-color: white;
  padding: 1rem;
  text-align: left;
  top: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.flipCard .innerCard .backCard .productHeader {
  display: block;
  font-size: 1.25rem;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
}
.flipCard .innerCard .backCard .productHeader hr {
  margin-left: 0;
  margin-top: 0.25rem;
}
.flipCard .innerCard .backCard .productContents p {
  margin-bottom: 1rem;
}
.flipCard:hover {
  top: 10px;
}
.flipCard:hover .innerCard {
  transform: rotateY(0deg);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.headerImg {
  animation-name: fade-in;
  -webkit-animation-name: fade-in;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in;
  -webkit-animation-timing-function: ease-in;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  background: linear-gradient(rgba(0, 0, 0, 0.3) 100%, rgba(0, 0, 0, 0.3) 100%), url("/img/background-large.jpg");
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  background-color: white;
  border-radius: 25px;
  width: 35rem;
  height: 15rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 2rem;
}
.card button {
  text-align: center;
  border: none;
  outline: none;
  color: #00a9a2;
  border: 5px solid #00a9a2;
  background-color: white;
  width: 15rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  border-radius: 5px;
  font-size: 1.5rem;
  font-weight: 900;
}
.card button:active {
  background-color: #00a9a2;
  color: white;
}
.card button:hover {
  cursor: pointer;
  background-color: #00a9a2;
  color: white;
}

footer {
  margin-top: 0 !important;
}

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