:root {
  --khaki:#D8E19C;
  --dark-green: #54756d;
  --darker-green: #364e49;
  --light-green: #9ADA81;
  --dark-yellow: #F5EC46;
  --light-yellow: #FAFE2D;
}

.container-fluid{
  overflow: hidden;
  padding: 0;
}

@font-face {
font-family: 'quicksand-reg';
src: url("/fonts/Quicksand-Regular.otf") format("opentype");
}

@font-face {
font-family: 'quicksand-bold';
src: url("/fonts/Quicksand-Bold.otf") format("opentype");
}

body {
font-family: "quicksand-reg";
color: var(--dark-green);
}

.title-row {
  margin: 0;
  border-bottom: 1px solid;
}

.title {
  width: 100%;
  max-width: 1140px;
  margin: 0.5em auto;
  padding: 0 0.5em;
}

.flex-centred {
  justify-content: center;
}

.splash-image-row {
height: 12em;
overflow: hidden;
box-shadow: 0px 6px 8px 0px #809080CC;
}

.photo-credit {
  position: relative;
  width: 100%;
  bottom: 1.5em;
  /* background-color: red; */
  text-align: right;
  padding-right: 2em;
  color: #eae0e0;
  background-color: #00000088;
  font-size: 0.8em;
}

.photo-credit a {
  color: #eae0e0;
  text-decoration: underline;
}

.splash-image {
height: 12em;
width: 100%;
object-fit: cover;
}

.season-link {
display: block;
color: var(--dark-green);
font-family: "quicksand-bold";
margin: 0.8em 1.3em;
padding: 0.4em 0.9em;
border-radius: 4px;
cursor: pointer;
}

.season-link.active {
background-color: var(--khaki);
color: var(--darker-green);
}

.filter-link {
display: block;
color: var(--dark-green);
border: 1px solid var(--dark-green);
margin: 0.3em 0.5em;
padding: 0.1em 0.5em;
border-radius: 4px;
cursor: pointer;
}

.filter-link.active {
background-color: var(--khaki);
color: var(--darker-green);
border: 1px solid #ffffff00;
}

.filter-link.active:hover, .season-link.active:hover {
color: var(--darker-green);
}

.filter-list {
display: block;
list-style-type: none;
padding: 0;
margin: 0;
text-align: center;
}

.filter-list li {
display: inline-block;
}

.recipe-thumb-holder {
width: 100%;
margin-top: 3em;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}

.recipe-thumb {
width: 400px;
height: 330px;
border-radius: 0.75em;
color: var(--darker-green);
position: relative;
cursor: pointer;
margin: 1em;
background-size: 100%; 
background-position-x: 50%;
background-position-y: 50%;
background-origin:center;
background-repeat: no-repeat;
box-shadow: 3px 3px 7px #809080CC;
}

@media only screen and (max-width: 575.98px) {
  .recipe-thumb {
    height: 260px;
    font-size: 0.9em;
  }
}

.recipe-thumb:hover {
-webkit-animation: zoomin 0.3s linear;
animation: zoomin 0.3s linear;
animation-fill-mode: forwards;
}

@-webkit-keyframes zoomin {
0% {
   background-size: 100%; 
}
100% {
   background-size: 110%; 
}

}

.recipe-thumb:hover {
color: var(--darker-green);
transition: all 1s;
background-size: 110%;
}

.recipe-thumb > .recipe-title {
display: inline-block;
font-size: 1.2em;
font-family: "quicksand-bold";
margin: 0.2em;
box-shadow: 0 0 0 5px #D8E19CBB;
background-color: #D8E19CBB;
box-decoration-break: clone;
}

.recipe-thumb:hover > .recipe-title {
box-shadow: 0 0 0 5px #D8E19C;
background-color: #D8E19C;
}

.recipe-short {
display: inline;
padding: 0.2em;
position: absolute;
bottom: 0;
left: 0;
margin: 8px;
background-color: #D8E19CBB;
box-shadow: 0.5em 0 0 #D8E19CBB,-0.5em 0 0 #D8E19CBB;
box-decoration-break: clone;
}

.recipe-thumb:hover > .recipe-short {
box-shadow: 0.5em 0 0 #D8E19C,-0.5em 0 0 #D8E19C;
background-color: #D8E19C;
}

.copyright-row {
  text-align: center;
  font-size: 0.9em;
  margin: 0.5em;
}