/* Text Elements */

h2.countdown-heading {
  margin-top: 0;
  margin-bottom: 0;
  color: #792e15;
  text-align: center;
  font-weight: 400;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
}

p.paragraph.countdown-para {
  margin: 16px auto;
  padding-top: 15px;
  padding-bottom: 12px;
  min-height: 0;
  max-width: none;
  width: 100%;
  color: #792e15;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 6vw;
  font-family: 'Spicy Rice', cursive;
  line-height: 1;

  mix-blend-mode: normal;
}

/* Layout Elements */

.container {
  padding-left: 0;
}

.container.thanksgiving-countdown {
  display: grid;
  min-height: 80vh;
  background-color: #fff;

  grid-template-areas: 'image content';
  grid-template-columns: repeat(2 , 50%);
  grid-template-rows: auto;
}

.container.content-countdown {
  display: -webkit-box;
  display: -webkit-flex;
  display:    -moz-box;
  display: -ms-flexbox;
  display:         flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  padding-right: 24px;
  padding-left: 24px;
  background-color: #fee4bb;

  grid-area: content;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
}

.container.countdown-wrap {
  padding: 8px 20px;
  height: auto;
}

.container.content-tg-img {
  display: -webkit-box;
  display: -webkit-flex;
  display:    -moz-box;
  display: -ms-flexbox;
  display:         flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  background-color: #fde3bd;
  background-image: none;
  background-attachment: scroll;
  background-position: left top;
  background-clip: border-box;
  background-origin: padding-box;
  background-size: 0 0;
  background-repeat: no-repeat;

  grid-area: image;
  background-blend-mode: normal;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
}

div.responsive-picture.picture-tg {
  max-width: 800px;
}

@media screen and (max-width: 60rem) {
  /* Text Elements */

  p.paragraph.countdown-para {
    font-size: 10vw;
  }

  /* Layout Elements */

  .container.thanksgiving-countdown {
    min-height: 80vh;

    grid-template-areas: 'image' 'content';
    grid-template-rows: minmax(60vh, auto) minmax(40vh, auto);
    grid-template-columns: 1fr;
  }

  .container.content-tg-img {
    background-image: -webkit-linear-gradient(bottom, rgba(15, 15, 15, 1) 0%, rgba(0, 0, 0, 0) 20%), url('../images/pexels-max-fischer-5872365%20%281%29.jpg');
    background-image:    -moz-linear-gradient(bottom, rgba(15, 15, 15, 1) 0%, rgba(0, 0, 0, 0) 20%), url('../images/pexels-max-fischer-5872365%20%281%29.jpg');
    background-image:      -o-linear-gradient(bottom, rgba(15, 15, 15, 1) 0%, rgba(0, 0, 0, 0) 20%), url('../images/pexels-max-fischer-5872365%20%281%29.jpg');
    background-image:         linear-gradient(0deg, rgba(15, 15, 15, 1) 0%, rgba(0, 0, 0, 0) 20%), url('../images/pexels-max-fischer-5872365%20%281%29.jpg');
  }
}

@media screen and (max-width: 48rem) {
  /* Layout Elements */

  .container.thanksgiving-countdown {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(60vh, auto) minmax(40vh, auto);
  }
}

@media screen and (max-width: 35.3125rem) {
  /* Layout Elements */

  .container.content-countdown {
    padding-right: 16px;
    padding-left: 16px;
  }
}