@font-face {
  font-family: "CoventryGarden";
  src: url("../fonts/CoventryGarden.woff") format("woff"),
    url("../fonts/CoventryGarden.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "MomsTypewriter";
  src: url("../fonts/Moms_typewriter.woff") format("woff"),
    url("../fonts/Moms_typewriter.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "YellowTail";
  src: url("../fonts/Yellowtail-Regular.ttf") format("truetype");
  font-display: swap;
  font-size-adjust: 1.5em;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0px;
  background-color: #6d593e;
  background-image: url("../img/plybkg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 100%;
  background-repeat: repeat-y;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
  font-family: "MomsTypewriter", "Josefin Slab", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  letter-spacing: 1px;
  align-self: center;
  text-align: center;
}
nav {
  font-family: "MomsTypewriter", "Josefin Slab", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
}

p {
  line-height: 1.5;
  color: #000;
  font-weight: 400;
  font-size: 1.5em;
}

hr {
  width: 100%;
  max-width: 400px;
  border: 0;
  height: 1px;
  background: #333;
  background-image: linear-gradient(to right, #ccc, #333, #ccc);
}

label {
  font-size: 1.5em;
}

.decaff-layout {
  font-family: "YellowTail", "Josefin Slab", "Helvetica Neue", "Open Sans",
    Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}

header {
  width: 98%;
  height: 200px;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  align-content: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  font-family: "CoventryGarden", "Josefin Slab", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  color: #fff;
}

footer {
  margin-bottom: 5px;
  width: 98%;
  height: 308px;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  background-image: url("../img/bottom-banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.9;
  border-radius: 2px;
  box-shadow: 5px 5px 3px rgba(1, 1, 1, 0.5);
}

figure {
  display: block;
  box-shadow: 10px 10px 5px #888888;
  background-color: #fff;
  margin: 0;
  & > img {
    max-width: 100%;
  }
  & > a {
    & > img {
      max-width: 100%;
    }
  }
  & > figcaption {
    display: block;
    margin: 0.2em 0 0;
    font-weight: normal;
    font-size: 12px;
    padding: 3px;
  }
}

article:first-of-type {
  margin-top: 20px;
}
article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 5px 5px 3px rgba(1, 1, 1, 0.5);
  max-width: 1200px;
  width: 86%;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  padding: 10px;
}

section {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.v-flex {
  display: flex;
  flex-direction: column;
}
.d-flex {
  display: flex;
  flex-direction: row;
}

.text-center {
  text-align: center;
  justify-content: center;
}

.shop-foot {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.shop-foot > p {
  margin: 0px;
}
.shop-foot > .title {
  font-weight: bold;
}
.shop-foot > .places {
  font-size: 0.9em;
}

.copy-write {
  margin-top: 15px;
  margin-bottom: 3px;
  font-size: 10px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.social {
  display: flex;
  justify-content: center;
}

.bottom-nav > ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  list-style-type: none;
  line-height: 0.6;
  margin: 15px;
  padding: 0px;
}

.bottom-nav > ul > li {
  padding: 5px;
}

.bottom-nav > ul > li > a {
  color: black;
  text-decoration: none;
}
.bottom-nav > ul > li > a:hover {
  color: #808080;
  text-decoration: none;
}

.footer-content-outer {
  border: 2px solid black;
  border-radius: 10px;
  padding: 7px;
  background-color: rgba(255, 255, 255, 0.8);
}
.footer-content-inner {
  width: 275px;
  border: 2px solid black;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

/* @media screen and (max-width: 450px) {
  .site-title {
    font-size: 2.5em;
  }
} */
@media screen and (max-width: 600px) {
  nav {
    font-size: 13px;
  }
  .site-sub-title {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  header {
    flex-basis: 25vw;
    height: auto;
  }
  .site-title {
    font-size: 2.5em !important;
  }
  .header-link {
    flex-basis: 25vw;
  }
}

@media screen and (max-width: 800px) {
  .bottom-nav {
    display: none;
  }
}

@-moz-keyframes spin {
  to {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.spin-it {
  font-size: 40px;
  animation: spin 1000ms linear infinite;
  color: rgb(246, 125, 69);
}

.react-images__view {
  display: flex;
  align-items: center;
  justify-content: center;
}
.react-images__view > img {
  max-height: 75vh;
  margin-bottom: 15%;
  margin-top: 10%;
}

.fbLink,
.etsyLink,
.instaLink,
.ytLink {
  max-height: 50px;
}

.link {
  color: black;
  cursor: pointer; 
}
.link:visited {
  color: black;
}
.link:hover {
  color: #808080;
  text-decoration: none;
  & .email-link {
    text-decoration: none;
  }
}

.email-link {
  text-decoration: underline;
  cursor: pointer;
  &:hover {
    text-decoration: none;
  }
}

.fbLink:link {
  margin: 10px;
  font-size: 25px;
  color: black;
}

.fbLink:visited {
  color: black;
}

.fbLink:hover {
  color: #2b4170 !important;
  text-decoration: none;
}

.fbLink:active {
  text-decoration: none;
}
.etsyLink:link {
  margin: 10px;
  font-size: 25px;
  color: black;
  text-decoration: none;
}

.etsyLink:visited {
  color: black;
}

.etsyLink:hover {
  color: #ff6905 !important;
  text-decoration: none;
}

.etsyLink:active {
  text-decoration: none;
}

.instaLink:link {
  margin: 10px;
  font-size: 25px;
  color: black;
}

.instaLink:visited {
  color: black;
}

.instaLink:hover {
  text-decoration: none;
}

.instaLink:active {
  text-decoration: none;
}

.ytLink:link {
  text-decoration: none;
}

.ytLink:visited {
  color: black;
}

.ytLink:hover {
  color: #f21919 !important;
  text-decoration: none;
}

.ytLink:active {
  text-decoration: none;
}

.site-title {
  font-size: 4em;
}
.site-sub-title {
  font-size: 1.5em;
  margin-top: 5px;
}

.header-link {
  flex-basis: 175px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header-img {
  max-height: 175px;
  max-width: 175px;
  width: 25vw;
  height: 25vw;
}
.header-text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  align-content: flex-start;
  width: 100%;
}

.nav {
  width: 98%;
}

.nav > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  padding: 10px;
  margin: 0px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  box-shadow: 5px 5px 3px rgba(1, 1, 1, 0.5);
}
.nav > ul > li {
  padding: 0px 2vw 0px 2vw;
}
.nav > ul > li > a {
  color: black;
  text-decoration: none;
}
.nav > ul > li > a:hover {
  color: #808080;
  text-decoration: none;
}

.figure {
  display: block;
  box-shadow: 10px 10px 5px #888888;
  background-color: #fff;
  margin: 0;
}
.figure > img {
  max-width: 100%;
}
.figure > a > img {
  max-width: 100%;
}
.figure > figcaption {
  display: block;
  margin: 0.2em 0 0;
  font-weight: normal;
  font-size: 12px;
  padding: 3px;
}
.article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 5px 5px 3px rgba(1, 1, 1, 0.5);
  max-width: 1200px;
  width: 86%;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  padding: 10px;
}

.section {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

main {
  font-size: 14px;
  flex-grow: 1;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.spaced-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.m-0 {
  margin: 0 !important;
}

.hide {
  display: none;
}
.videoFrame {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
.videoFrame iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}
