@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,700;1,400;1,700&family=Jost:ital,wght@0,400;0,600;1,400;1,600&display=swap');
  
body {
  font-size: 16px;
  font-family: 'Cormorant Garamond', serif;
  color: #2D2D2D;
}

a {
  font-family: 'Jost', sans-serif;
  text-decoration: underline;
}

h1 {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 6rem;
  margin-bottom: 2.5rem;
}

h2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

p {
  font-size: 1.25rem;
  font-family: 'Jost', serif;
  margin-bottom: .5rem;
}

p.serif {
  font-size: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: .5rem;
}

.navbar {
  padding: 30px 30px;
}


@media only screen and (min-width: 576px) {
  .navbar {
    padding: 8px 50px;
  }
}

.box {
  border-radius: 6px;
  padding: 20px;
  transition: background-color 1s ease-in-out, color .5s ease-in-out, mix-blend-mode 2s ease-in;
}

@media only screen and (min-width: 576px) {
  .box {
    padding: 30px;
  }
}

.box:hover {
 background-color: #000000 ;
 color: #ffffff !important;
}

.image.box {
  padding: 0px;
  border-radius: 6px;
}

.image.box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

.wide-container {
  margin: 30px 30px;
}

@media only screen and (min-width: 576px) {
  .wide-container {
    margin: 60px 60px;
  }
}

.bg-yellow {
  background-color: #FFF200;
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-bright-orange {
  background: #F27333;
}

.bg-fuscia {
  background: #F1A3F9;
}

.bg-pale-yellow {
  background: #FEF7AF;
}

.bg-cream {
  background-color: #FEF8F0;
}

.bg-gray {
  background-color: #ececec;
}

.bg-bright-blue {
  background-color: #4BADE9;
}

.bg-bright-orange {
  background-color: #F27333;
}

.bg-mossy-green {
  background-color: #84B99D;
}

.bright-orange {
  color: #F27333;
}

.white {
  color: #ffffff;
}

/* Stolen Sense */

/*
.container {
  max-width: 1240px;
  min-width: 0
}*/


.container__800 {
max-width: 800px
}

.container__800.m-auto {
margin-left: auto;
margin-right: auto
}

.container__800.m-auto.hero {
text-align: center;
margin-left: auto;
margin-right: auto
}


.max__500 {
  max-width: 500px;
  margin: auto;
}

.theme {
margin: 40px auto;
font-size: 1.5rem;
}

.section.hero {
padding-top: 40px;
padding-bottom: 40px;
overflow: hidden
}


.button__group {
margin-top: 40px;
display: inline-block
}

.button {
color: #fff;
text-align: center;
letter-spacing: 1px;
background-color: #000;
border-radius: 8px;
justify-content: center;
align-items: center;
padding: 24px 30px;
font-family: 'Jost',sans-serif;
font-size: 17px;
font-weight: 700;
text-decoration: none;
transition: all .2s;
display: flex;
}

.button:hover {
transform: translateY(-6px);
}