<style>
  table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 60%;
  }

  td, th {
    border: 2px solid black;
    text-align: left;
    padding: 8px;
  }

  tr:nth-child(even) {
    background-color: #dddddd;
  }

  body {
    font-family: Arial, Helvetica, 'Lato', sans-serif;
  } 

  * {
    box-sizing: border-box;
  }

  img {
    width: 100%;
    height: auto;
  }

  .header {       /* Style the header */
    background-color: #e6e6e6;
    padding: 20px;
    text-align: center;
  }

  .navbar { /* Style the top navigation bar */
    overflow: hidden;
    background-color: #333;
  }

  .navbar a {     /* Style the topnav links */
    float: left;
    color: white;
    font-size: 16px;
    text-align: center;
    padding: 14px 26px;
    text-decoration: none;
  }

  .overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
  }

  .overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }

  .overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
  }

  .overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
  }

  .overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
  }

  .dropdown {
    float: left;
    overflow: hidden;
  }

  .dropdown .dropbtn {
    font-size: 16px;  
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  } 

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }

  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }

  .dropdown-content a:hover {
    background-color: #ddd;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: red;
  }


  .column {   /* Create three unequal columns that floats next to each other */
    float: left;
    padding: 10px;
  }

  .column.side.right {    /* Left and right column */
    width: 15%;
  }

  .column.middle {  /* Middle column */
    width: 85%;
  }

  .row:after {  /* Clear floats after the columns */
    content: "";
    display: table;
    clear: both;
  }

  /* Responsive layout - makes the three columns stack on top of each other instead of next to each other  "alert('Hello world!')"*/
  @media screen and (max-width: 450) {
    .overlay a {font-size: 20px}
      .overlay .closebtn {
      font-size: 40px;
      top: 15px;
      right: 35px;
    }
    .column.side, .column.middle {
      width: 100%;
    }
    img {
      width: 50%;
      height: auto;
    }
  }

  /* Style the footer */
  .footer {
    bottom: 0;
    background-color: #f1f1f1;
    padding: 10px;
    text-align: center;
    background-color: #333;
    height: 7,5rem;        
  }   

  p.footer{
    background: none;
    margin-right:15px;
    padding: 10px;
    width: 200px;
    text-align-last: center;
  }


</style>