@charset "utf-8";
/* CSS Document */

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-size: 24px;
  width: 90%;
  margin: 20px auto;
  font-family: Verdana, Geneva, Sans-Serif;
}

div {
  width: 100%;
  border-bottom: 2px solid black;
  padding: 10px 0px;
}

nav {
  background: navy;
  height: 50px;
}

.two-across {
  width: 50%;
  float: left;
  border-bottom: none;
}

.two-across-hidden {  
  overflow: hidden;
}

h1 {
  color: #85292a; burgundy
  font-size: 36px;
  margin-bottom: 10px;
}

h2 {
  color: navy;
  font-size: 30px;
  margin-bottom: 10px;
}

h3 {
  color: green;
  margin: 10px 0;
  font-size: 28px;
  margin: 20px 0;
}

.italics {
  font-style: italic;
}

 ul {
  list-style-position: inside;
  list-style-type: disc
}

ul li {
  margin-bottom: 10px;
}

ol {
  list-style-type: decimal;
  list-style-position: inside
}

.articles-by-age {
  border: 1px orange solid;
  padding: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.articles-by-age p {
  float: left;
  width: 22.5%;
  height: 75px;
  margin-left: 2%;
  border: 1px black solid;
}

.articles-by-age h2 {
  clear: both;
  margin-bottom: 20px;
  overflow: hidden;
}

.two-across-iframes {
  margin-left: 6.66666%;
  width:40%;
  border: 2px red solid;
  padding: 5px;
  float: left;   
  margin-top: 10px; 
  overflow: hidden;
}

.videos {
  overflow: hidden;
}

.clear-float {
  clear: both;
}

p {
  margin-bottom: 10px;
}

.single {
  width: 50%;
  margin: 0 auto;
  border-bottom: none;
}

.half {
  width: 42.5%;
  margin-left:5%;
  float: left;
  border-bottom: none;
}

.half img {
  width: 100%;
}

.quarters {
  width: 15%;
  margin-left:5%;
  float: left;  
  border-bottom: none;
}

.small-image img {
  width: 25%;
}

.half p {
  min-height: 60px;
}

.thirds {
  width: 26.666666666%;
  margin-left:5%;
  float: left;
  border-bottom: none;
  margin-bottom: 10px;
}

.thirds p {
  min-height: 170px;
}

.thirds img {
  width: 90%;
}

 /*
 .sixths {
  width: 10.8333333333333%;
  margin-left:5%;
  float: left;
  border-bottom: none;
}
*/

.sixths {
  display: grid;
  grid-template-columns: repeat(6, 16.66666666666667%);
}

.sixths div {
  border-bottom: none;
}

.sixths img {
  width: 90%;
}

.twenty-five-percent-images img {
  width: 25%;
}

.overflow-hidden {
  overflow: hidden;
}

iframe {
  width: 100%;
  height: 315px;
}

.bold {
  font-weight: 800;
}

.img .half {
  margin-bottom: 50px;
}

footer {
  display: grid;
  grid-template-columns: 50% 50%;  
}

.footer-social-media-links {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.privacy-policy {
  text-align: center;
}