* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html{
	width: 100%;
	height: 100%;
  
}

.row {
    display: grid;
    grid-template-columns: 75% 25%;
  }

  /* Create two unequal columns that floats next to each other */
  /* Left column */
  .leftcolumn {
    text-align: center;
    padding: 50px;
  }

  /* Right column */
  .rightcolumn {
    text-align: center;
  }

.podcast {
  padding-right:5px;
}

iframe {
  padding-top: 10px;
}

  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  .footer {
    padding:10px;
    text-align: center;
    background: #ddd;
    margin-top:10px;
    position: absolute;
    left:0;
    bottom:0;
    width: 100%;

  }

  /* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 700px) {
    .row {
      grid-template-columns: 100%;
    }
    .footer {
      padding:10px;
      text-align: center;
      background: #ddd;
      margin-top:10px;
      position: relative !important;
      left:0;
      bottom:0;
      width: 100%;
    }
  }
