html {
  font-size: 16px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-family: "Noto Serif", serif;
}

body {
  background-color: #e2e1dd;
}

footer a, footer a:hover, footer a:visited, footer a:active {
  color: #88298a;
  text-decoration: none;
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid #88298a;
}

h1 {
  padding-right: 20px;
  padding-left: 20px;
}
h1#main-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  h1#main-title {
    font-size: 35px;
  }
}
h1.subsection {
  padding: 20px;
  border-top: 1px dotted grey;
  border-bottom: 1px dotted grey;
}

h2 {
  margin-bottom: 40px;
}
#info h2 {
  margin-bottom: 20px;
  margin-top: 40px;
}

#frontpage h1 {
  margin-bottom: 50px;
}
#frontpage h2 {
  margin-bottom: 50px;
}

#back-button {
  display: block;
  margin: 0px auto 60px auto;
  padding: 0px;
  width: 100px;
  text-decoration: none;
  font-size: 15px;
  text-transform: lowercase;
  text-align: center;
}
#back-button.bottom {
  margin-top: 50px;
}

.order-button {
  display: block;
  margin: 0px auto 60px auto;
  padding: 20px;
  width: 280px;
  text-align: center;
  background-color: #488248;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  margin-top: 60px;
  margin-bottom: 80px;
  border-radius: 6px;
}
@media screen and (max-width: 600px) {
  .order-button {
    width: 100%;
  }
}
.order-button .arrow {
  border: solid white;
  border-width: 0 3px 3px 0;
}

#sticky-order {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1000;
  background-color: rgba(72, 130, 72, 0.8);
  backdrop-filter: blur(10px);
  color: white;
  padding: 16px;
  font-size: 16px;
  text-decoration: none;
  line-height: 1;
}
@media screen and (max-width: 600px) {
  #sticky-order {
    width: 100%;
    background-color: rgba(139, 47, 149, 0.7);
    backdrop-filter: blur(10px);
  }
}
#sticky-order .sticky-order-text {
  line-height: 1;
}
#sticky-order .arrow {
  border: solid white;
  border-width: 0 3px 3px 0;
  margin-left: 6px;
}

p {
  line-height: 1.4;
}
p:first-of-type {
  margin-top: 0px;
}
p:last-of-type {
  margin-bottom: 0px;
}
#frontpage #main p {
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  p {
    margin-right: 5px;
    margin-left: 5px;
  }
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}
header img {
  width: 100%;
  height: auto;
}

section {
  max-width: 800px;
  margin: 0 auto 50px auto;
  padding: 0px 20px 0px 20px;
}
section.full-width {
  max-width: 100%;
}
section#examples {
  margin: 100px auto 70px auto;
}
@media screen and (max-width: 600px) {
  section#examples {
    margin: 50px 0px 50px 0px;
  }
}
section h1 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 50px;
}

img {
  /*&.left{
      float: left;
      margin-right: 60px;
      margin-bottom: 40px;
      margin-left: -60px;
  }*/
}
#main img {
  width: 50%;
  height: auto;
}
img.rotate.left {
  transform: rotate(-2deg);
}
img.rotate.right {
  transform: rotate(2deg);
}
img.shadow {
  box-shadow: -4px 8px 2px rgba(0, 0, 0, 0.05);
}

img.example.inline {
  display: block;
  margin: 40px auto;
  box-shadow: 6px 6px 2px rgba(0, 0, 0, 0.07);
}
img.example.inline.rotate {
  transform: rotate(-2deg);
}

#examples {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
}
@media screen and (max-width: 600px) {
  #examples {
    display: block;
    width: auto;
    height: auto;
  }
}
#examples .item {
  height: 100%;
}
@media screen and (max-width: 600px) {
  #examples .item {
    height: auto;
    width: 100%;
  }
}
#examples .item img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 600px) {
  #examples .item img {
    height: auto;
    width: 100%;
    display: block;
  }
}

#product-info {
  padding: 50px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  background-color: rgba(0, 0, 0, 0.05);
}
#product-info h2 {
  margin-bottom: 30px;
  margin-top: 0px;
}
#product-info .order-button {
  margin-top: 50px;
  margin-bottom: 0px;
}

.arrow {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}
.arrow.right {
  transform: rotate(-45deg) translateY(-2px);
  -webkit-transform: rotate(-45deg) translateY(-2px);
  margin-left: 15px;
}
.arrow.left {
  transform: rotate(135deg) translateY(-2px);
  -webkit-transform: rotate(135deg) translateY(-2px);
}
.arrow.up {
  transform: rotate(-135deg) translateY(-2px);
  -webkit-transform: rotate(-135deg) translateY(-2px);
}
.arrow.down {
  transform: rotate(45deg) translateY(-2px);
  -webkit-transform: rotate(45deg) translateY(-2px);
}

.group:after {
  content: "";
  display: table;
  clear: both;
}

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