/* 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." */


/* Create two equal columns that floats next to each other */
.column1 {
  float: left;
  width: 20%;
  padding-left: 2%;
  padding-right: 2%;
  box-sizing: border-box;
  font-size: 5vmin;
}

.column2 {
  float: left;
  width: 80%;
  padding-left: 1%;
  padding-right: 1%;
  box-sizing: border-box;
}

/* Clear floats after the columns */
.mobileRow:after {
  content: "";
  display: table;
  clear: both;
  padding-left: 4%;
  padding-right: 4%;
  padding-bottom: 6%;
}

.mobileColumn1 {
  float: left;
  width: 50%;
  padding-left: 2%;
  padding-right: 2%;
  box-sizing: border-box;
}

.mobileColumn2 {
  float: left;
  width: 50%;
  padding-left: 2%;
  padding-right: 2%;
  box-sizing: border-box;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

a:hover {
  cursor:pointer;
}

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