:root {
  --olc-white: #ffffff;
  --olc-blue: rgb(50 200 250);
  --olc-grey: #3c3c3c;
}

body {  
    align-items: center;
    margin: 20px auto ;
    padding: 20px;
    max-width: 960px;    
    background-color: #505050;   
    font-family: verdana, monospace, sans-serif;
    font-size: large;
    color: var(--olc-white);
  }

h2 {
    font-family: verdana, monospace, sans-serif;
    font-style: normal;
    font-size: 30px;
    text-shadow: 2px 2px #1f1f1f;
    color: var(--olc-white);
  }
  p {
    text-align: justify;
    font-style: normal;
    font-size: normal;
    color: white;
  }

  a {
    text-decoration: none;
    color: var(--olc-blue);
  }

  a:hover {   
    color: #FFFF00
  }

  .title_image
  {
    padding: 20px;

  }

  .header_image
  {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    max-height: 50px;
  }

  table.social_links
  {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    table-layout: fixed;
    text-align: center;
    vertical-align: center;
  }

  table.social_links td
  {
    font-size:larger;
    height: 50px;
    background-color: #2c2c2c;
    vertical-align: center;
  }

  table.social_links td a
  {
    color: var(--olc-white);
    display: inline-block;
    line-height:50px;
    height:100%;
    width:100%;
  }
 
  table.social_links td:hover 
  {
    background-color: var(--olc-blue);
  }




  .copyright 
  {
    text-align: center;
    padding: 10px;
    font-size: 12px;
  }

 