  

.video-container {
  width: 98%;
  padding: 1rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-areas:    
  'menu01 menu02'
  'menu03 menu04';
  gap: 0.7rem;
  align-items: stretch;
  }

  .welcome, .text-quote {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.5rem;
  }

.text-quote {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: var(--text-quote-color);
  }

  .text-quote sub {
    font-size: 1.1rem;
    font-style: italic;
  }

/*  ******************************************************************* */


/* Container for flexboxes */

.row {
display: flex;
flex-wrap: wrap;
}

/* Create two equal columns */
.column {
flex: 50%;
padding: 0 1rem;
background-color: var(--primary-background-color);
color: var(--text-title-color);
text-align: center;
}

.column-2 hr {
  color: var(--text-color);
}

.promo img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 75%;
}

/* On screens that are 990px wide or less, make the columns stack on top of each other instead of next to each other */

@media screen and (max-width: 980px) {

.welcome, .text-quote {
  font-size: 1.4rem;
  line-height: 1.5rem;
}

.row {
flex-direction: column;
}

.column {
flex: 50%;
}

.column-2 hr {
  color: var(--text-color);
}

.recent-video-container {
width: 100%;
}

}/* On screens that are 990px wide or less, make the columns stack on top of each other instead of next to each other */

@media screen and (max-width: 790px) {

  .welcome, .text-quote {
    font-size: 1.4rem;
    line-height: 1.5rem;
  }
  
  .row {
  flex-direction: column;
  }
  
  .column {
  flex: 50%;
  }
  
  .column-2 hr {
    color: var(--text-color);
  }
  
  .recent-video-container {
  width: 100%;
  }
  
  }

/* On screens that are 620px wide or less, make the columns stack on top of each other instead of next to each other */

@media screen and (max-width: 620px) {

  .welcome, .text-quote {
  font-size: 1.4rem;
  line-height: 1.6rem;
}

.column h3 {
font-size: 1.6rem;
}

.column h4 {
font-size: 1.5rem;
}

.row {
flex-direction: column;
}

.recent-video-container {
width: 98%;
grid-template-areas:
'menu01'
'menu02'
'menu03'
'menu04';
}

.item {
  margin: 0.5rem 0;
}

.pad {
  height: 10rem;
}

} 