body {
    background-color: darkgreen;
    text-align: left;
    margin-left: 12%;
  }
  
  h1 {
    color: white;
    font-size: 40px;
    text-align: center;
  }
  h2 {
    font-size: 20px;
    text-align: center;
  }
  
  p {
    /*color: white;*/
    font-family: verdana;
    font-size: 16px;
    text-align: center;
  }
  * {
    box-sizing: border-box;
  }
  .header {
    background-color: darkgreen;
    /* color: white; */
    padding: 30px;
    text-align: center;
    font-size: 35px;
  }
  
  /* Create three equal columns that floats next to each other */
  .column {
    color: white;
    background-color: darkolivegreen;
    font-size: 26;
    float: left;
    width: 33.33%;
    padding: 10px;
    /* height: 300px; Should be removed. Only for demonstration */
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    font-size: 20;
    clear: both;
  }
  
  /* Style the footer */
  .footer {
    background-color: darkgreen;
    padding: 10px;
    text-align: center;
  }
  
  /* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
  @media (max-width: 600px) {
    .column {
      width: 100%;
    }
  }
  coded{
   background-color: lightgreen;
   border-radius: 25px 50px 25px 50px;
   color: white;
   font-size: 18;
   padding: 20px;
   width: 500;
   height: 200px;
  }
  a{
    color: black;
    text-decoration: none;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 18px;
  }
