/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
/** { */
/*  box-sizing: border-box;*/
/*}*/

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

.clmn-left {
  box-sizing: border-box;
  padding: 15px;
  float: left;
  width: 50%;
}
    
.clmn-right {
  box-sizing: border-box;
  padding: 15px;
  float: right;
  width: 50%;
}
 /* Use a media query to add a break point at 800px: */
@media screen and (max-width: 800px) {
 .clmn-left, .clmn-right {
    width: 100%; /* The width is 100%, when the viewport is 800px or smaller */
  }
}

@media screen and (min-width: 801px) {
  .clmn-left {
    padding-left: 400px; /* shifts left/right towards the center on larger screens that handle 2 column layout */
  }
  .clmn-right {
    padding-right: 400px;
  }
}