#page_videos h1{
  font-size: 1.5em;
  color: var(--text);
  margin-top: 2em;
  font-weight: bold;
  position: relative;
  width: 100%;
  padding-left: 1.7em;
  text-transform: uppercase;
  z-index: 0;
  letter-spacing: 1px;
}

.youtube{
    position: relative;
    text-align:center;
    filter: drop-shadow(4px 2px 6px #00000080);
}
.youtube .play-button {
  width: 90px;
  height: 60px;
  background-color: #333;
  box-shadow: 0 0 30px rgba( 0,0,0,0.6 );
  z-index: 1;
  opacity: 0.8;
  border-radius: 6px;
}

.youtube .play-button:hover{
  background-color: #222;    
    box-shadow: 0 0 10px rgba( 0,0,0,0.6 );
}

.youtube .play-button:before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 26.0px;
  border-color: transparent transparent transparent #fff;
}
.youtube img,
.youtube .play-button {
  cursor: pointer;
}

.youtube img{
    width:560px;
    height: 315px;
    object-fit: cover;
}

.youtube .play-button,
.youtube .play-button:before {
  position: absolute;
}
.youtube .play-button,
.youtube .play-button:before {
  top: 50%;
  left: 50%;
  transform: translate3d( -50%, -50%, 0 );
}

.video_card{
  margin:1em;
  padding: 1em 0;
  background: white;
  border-radius: var(--border_radius);
  /* max-width: 50%; */
  filter: drop-shadow(4px 2px 6px #00000080);
  cursor: pointer;
}

.video_card h2{
  margin: 0;
  text-align: center;
  font-size: 1.5em;
  padding: 0 0 0.5em 1em;
}

.video_card .description{
  padding: 1em 1em 0 1em;
  
}