/* 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: #F2B6D7;
  color: #7D0519;
  font-family: filson-pro;
  font-weight: 500;
  font-size: 10px;
  font-style: normal;
}
.body {
  position:fixed;
  top:5%;
  left:10%;
  width: 80%;
  max-width:800px;
  height: 600px;
  max-height: 90%;
  overflow:hidden;
  background-color: #D382D0;
}
.cont{
  width:100%;
  height:100%;
  overflow:scroll;
}
.column {
  float:left;
  width:50%;
  overflow:hidden;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
.columnb1 {
    margin:2% 0 0 2%;
    background-color: white;
    border:4px dotted #F20C36;
    padding:5px 5px 5px 5px;
}
.columnb2 {
    margin:2% 2% 0 2%;
    background-color: white;
    border:4px dotted #F20C36;
    padding:5px 5px 5px 5px;
}
.header {
  background-color: #D382D0;
  font: bold 20px;
  color:white;
  padding:5px 5px 5px 5px;
}