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

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


/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 20%;
  padding: 0px;
  position: fixed;
  
}


.column2 {
	float: left;
    width:80%;
    padding: 45px;
    border: 2px solid black;
    margin-left: 10%;
    background-color: white;
}

.column3 {
  float: left;
  width: 25%;
  padding: 0px;
  position: fixed;
  margin-left:73%;
}
    

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

html {
  padding: 10px;
}

  .pink {
  background-color: #FFC4DA;
  border: 2px solid black;
  color: black;
  padding: 2px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  cursor: pointer;
  width: 20%;
  height: 40px; 
}

.green {
  background-color: #D1F4DE;
  border: 2px solid black;
  color: black;
  padding: 2px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  cursor: pointer;
  width: 20%;
  height: 40px; 
}

.blue {
  background-color: #A8DEF8;
  border: 2px solid black;
  color: black;
  padding: 2px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  cursor: pointer;
  width: 20%;
  height: 40px; 
}

.purple {
  background-color: #D6C1F9;
  border: 2px solid black;
  color: black;
  padding: 2px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  cursor: pointer;
  width: 20%;
  height: 40px; 
}

hr {
  color: #A8DEF8;
  border: 1px solid black;
}

