body {background-color: rgb(100, 92, 92); color: rgb(255, 255, 255); font-family:'sans-serif', 'Lexend'}


.A {width:1000px;height:300px;margin-left:15px;font-size: 130%;}


/* unvisited link */
a:link {
  color: rgb(0, 234, 255);
}

/* visited link */
a:visited {
  color: rgb(0, 225, 255);
}

/* mouse over link */
a:hover {
  color: rgb(255, 0, 0);
}

/* selected link */
a:active {
  color: rgb(255, 255, 255);
}

* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
  }
  
  /* Style the header */
  .MyWebsite {
    background-color: #5a5a5a;
    padding: 20px;
    text-align: center;
  }
  
  /* Style the top navigation bar */
  .topnav {
    overflow: hidden;
    background-color: rgb(69, 61, 61);
  }
  
  /* Style the topnav links */
  .topnav a {
    float: left;
    display: block;
    color: #ffffff;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  /* Change color on hover */
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Create three unequal columns that floats next to each other */
  .column {
    float: left;
    padding: 10px;
  }
  
  /* Left and right column */
  .column.side {
    text-indent: 15px; 
    width: 45%; font-size: 120%;
  }
  
  /* Middle column */
  .column.middle {
    text-indent: 30px; 
    width: 50%; font-size: 130%;
  }
  
  /* Clear floats after the columns */
  .row::after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column.side, .column.middle {
      width: 100%;
    }
  }
 