body {
  background: #eee;
  font-family: Open Sans, Verdana, sans-serif;
  font-size: 0.98em;
  line-height: 130%;
  }
  

h1 {
    line-height: 120%;
  }
  
h3 {
  text-align: left;
  }
  
.header-image {
  height: 200px;
  /*top: 0;*/
  width: 100%;
  background-color: pink;
  background: linear-gradient(rgb(0,0,0,0), rgb(0,0,0,0)), url("IndexImages/photo3.jpg") no-repeat; /*Replace this with your own header image!*/
  background-size: cover;
  border-radius: 10px;
  background-position: center;
  margin-bottom: 1em;
  /*margin-bottom: 30px;*/
  }
  
#header {
  /*border: 0;*/
  text-align: center;
  margin: 0 auto;
  width: 70%;
  max-width: 70em;
  }  
  
#description {
  /*width: 60em;*/
  margin: 0 auto;
  text-align: left;
  width: 80%;
  max-width: 60em;
  }
  
.column-wrapper {
  columns: 4;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
  width: 70%;
  max-width: 75em;
  
  }

.post, .post-scroller {
  background: #ddd;
  border: 5px solid #fff;
  border-radius: 15px;
  flex: 1 1 20em; /* 3–4 columns depending on screen width */
  box-sizing: border-box;
  }
  
.post-scroller {
  height: 32em;
  }

.post-inner {
  margin:1em;
  }
  
.post-scroller .post-inner {
  max-height: 30em; /*to keep scrollbars from disrupting round corners*/
  overflow-y: auto;
  }
  
  
.readmore {
  background: #da3d2c;
  border-radius: 12px;
  padding: 10px;
  color: white;
  text-align: center;
  }
  
.readmore-link a {
  text-decoration:none;
  }
  
.readmore:hover {
  background: #ef4c3a;
  }
  
#footer {
  font-size: 0.85em;
  background: #ccc;
  color: black;
  }
  
#footer li {
  padding-left:0;
  padding-top: 2px;
  padding-bottom: 2px;
  list-style-type: none;
  }

.footer-columns {
  border:0px black solid;
  margin: 0 auto;
  width: 68%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  }
  
.footer-column {
  text-align: left;
  height:6em;
  /*width: 100%;*/
  padding: 10px;
  padding-top:0;
  width: 30%;
  min-width: 200px;
  
  }
  


@media(max-width:80em) { /*allow narrower columns on small screens*/
  #header, #description, .column-wrapper, .footer-columns {
    width: 90%;
    }
    
  }  
  
@media(orientation: portrait) { /*removes columns for mobile*/
  #header {
    width: 80%;
    }
  .column-wrapper, .footer-columns {
    width: 80%;
    columns: 1;
    }
  }