html {
  scroll-behavior: smooth;
}

body {
  background-color: #ddddee;
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  color:#221122;
  font-size: 100%;
}

.topHeader {
  height: 120px;
  text-align: center;  
  background: linear-gradient(180deg, rgba(34,17,34,0.5) 0%, rgba(51,34,51,0.3) 46%, rgba(68,51,68,0.1) 100%);
  background-color: #802bbc;
  border-bottom: 3px solid #99ff00;
}

.logoContainer {
  background: url(images/sv_header_background.png) no-repeat center;
  height: inherit;
}

.logo {
  display: inline-block;
  background-color: #4500EF;
  background-image: url(logos/Essenvi-Logo.jpg);
  width: 175px;
  height: 175px;
  transition: all .3s;
  margin-top: 30px;
  border: 1px solid #ff00ff;
  border-radius: 3px;
  box-shadow: 0px 3px 10px #4500EF;
}

.wrapper {
  display: grid;
  grid-template-columns: minmax(50px, auto) minmax(320px, 1048px) minmax(50px, auto);
  grid-gap: 1rem;
}

.leftGutter {
  text-align: right;
}

.content {
  padding-top: 120px;
  padding-bottom: 2rem;
}

.cooking {
  padding-left: 2em;
  padding-right: 2em;
  margin-bottom: 5em;
}

.sectionHeader {
  background: url(logos/Essenvi-Logo-Header.png) left no-repeat;
  padding-left: 45px;
  padding-top: 7px;
  font-size: x-large;
  font-weight: bold;
  color: #4500EF;
  min-height: 57px;
  font-variant: small-caps;
  text-shadow: 1px 1px 1px #99ff00;
}

.smallVerticalSpacer {
  display: block;
  height: 3rem;
}

.soundcloudEmbed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
}

.postDate {
  display: block;
  font-size: small;
  color: gray;
  font-weight: bold;
}

.sciframe {
  background: linear-gradient(180deg, rgba(68,51,68,0.1) 0%, rgba(51,34,51,0.3) 46%, rgba(34,17,34,0.5) 100%);
  background-color: #802bbc;
  border-radius: 5px;
}

.blurb > p {
  font-size: small;
}

.itemList {
  display: grid;
  grid-template-columns: repeat(auto-fit, 320px);
  grid-gap: 2rem;
  grid-row-gap: 4rem;
  justify-content: center;
}

.itemList > .item {
  display: grid;
  grid-template-rows: 222px 320px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 1px 1px 5px #333333;
}

.itemList > .item > .itemHeader {
  display: grid;
  grid-template-rows: 40px 214px;
  background-color: rgba(50,17,74,1);
}

.itemList > .item > .itemHeader > h1 {
  font-weight: normal;
  font-variant: small-caps;
  font-size: large;
  color: #eeeeff;
  padding-top: 0.75rem;
  padding-bottom: 1rem;
  text-align: center;
  margin: 0;
  background: linear-gradient(180deg, rgba(50,17,74,0.3) 0%, rgba(69,0,239,0.25) 60%,  rgba(40,30,75,0.5) 99%);
  background-color: #802bbc;
  height: 40px;
  text-shadow: 1px 1px 1px #333333;
}

article.item > .itemArt {
  display: block;
  width: 320px;
  height: 320px;
  background-color: rgba(50,17,74,1);
}

.streamers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  padding-top: 0.75rem;
  padding-bottom: 1.25rem;
  background-color: rgba(27, 0, 93, 0.5);
  background: linear-gradient(180deg, rgba(50,17,74,0.5) 0%, rgba(69,0,239,0.25) 55%,  rgba(40,30,75,0.6) 99%);
  transition-timing-function: ease-in-out;
  transition: 0.25s;
  position: relative;
  top: 266px;
}

.streamers:hover {
  background-color: rgba(27, 0, 93, 1);
}

.youtube {
  display: block;
  text-align: center;
  padding: 4px;
  height: 180px;
  
}

.youtube > iframe {
  border: 0px solid #99ff00;
}

.streamers > a {
  width: 35px;
  height: 35px;
  display: block;
  border-radius: 4px;
  opacity: .75;
  transition-timing-function: ease-in-out;
  transition: 0.3s;
}

.streamers > a:hover {
  opacity: 1;
}

a.amazon {
  background: url(logos/amazon.png) no-repeat left 0px;
}

a.apple {
  background: url(logos/apple.png) no-repeat left 0px;
}

a.deezer {
  background: url(logos/deezer.png) no-repeat left 0px;
}

a.spotify {
  background: url(logos/spotify.png) no-repeat left 0px;
}

a.tidal {
  background: url(logos/tidal.png) no-repeat left 0px;
}

footer {
  text-align: center;
  margin: 0 auto;  
  display: block;
  width: 50%;
}

.secondary {
  color: #333;
  font-weight: bold;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.followUs {
  text-align: left;
  padding-left: 1rem;
}

.email {  
  text-align: right;
  padding-right: 1rem;
  border-right: 1px solid darkgray;
  margin-top: auto;
  margin-bottom: auto;
}

.social {
  display: grid;
  grid-template-columns: 30px 30px;
  grid-gap: 0.5rem;
}