    .headingimage{
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

* {
    box-sizing: border-box;
  }
  
  body {
    background-color: #ffffff;
    padding: 20px;
    font-family: Arial;
  }
  
  /* Center website */
  .main {
    max-width: 1000px;
    margin: auto;
  }
  
  h1 {
    font-size: 40px;
    word-break: break-all;
    text-align: center;
  }
  
  .row {
    margin: 8px -16px;
  }
  
  /* Add padding BETWEEN each column (if you want) */
  .row,
  .row > .column {
    padding: 8px;
  }
  
  /* Create four equal columns that floats next to each other */
  .column {
    float: left;
    width: 25%;
  }
  
  /* Clear floats after rows */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Content */
  .content {
    background-color: #f1f1f1;
    padding: 10px;
  }
  
  /* Responsive layout - makes a two column-layout instead of four columns */
  @media screen and (max-width: 900px) {
    .column {
      width: 50%;
    }
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column {
      width: 100%;
    }
  }
    
  h2{
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
  }

  ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: block;
    text-align: center;
    font-size: 25px;
    line-height: 50px;
  }
  
  a{
      text-decoration: none;
      text-align: center;
      color: Red;
  }
  
  a href{
      color: Red;
  }
  
  a:active{
    color: black;
    background-color: transparent;
    text-decoration: none;
}
  
  a:visited{
    color: black;
    background-color: transparent;
    text-decoration: none;
}

  .bodycopy{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height:3px;
    text-align: center;
  }

  p{
    text-align: center;
  }

  h3{
    text-align: center;
  }











  * {
    box-sizing: border-box;
  }
  
  /* Position the image container (needed to position the left and right arrows) */
  .container {
    position: relative;
  }
  
  /* Hide the images by default */
  .mySlides {
    display: block;
    margin: auto;
    width: 500px;
  }
  
  /* Add a pointer when hovering over the thumbnail images */
  .cursor {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: black;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .row:after {
    content: "";
    display: table;
    clear: both;
  }