html {
  background-color: black;
  height: 100%;
  width: 100%;

  .column {
    float: left;
    width: 30%;
    padding: 10px;
    height: 300px;
  }

  .midcolumn {
    margin: 0 auto;
    width: 30%;
    padding: 10px;
    max-width: 200px; /* making it small */
    height: 200px;
  }

  h1{
    color: white;
  }
  
  .smalltext {
    color: white;
    font-size: 20px;
    background-color: black;
  }

  .bigtext {
    color: white;
    font-size: 40px;
    background-color: black;
  }
  
  a:link {
    color: white;
  }

  a:hover {
    color: red;
  }

  a:visited {
    color: white;
  }
}
