/* 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: #e2d1d0;
  color: black;
  font-family: Verdana;
}

.header {
  display: block;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}

nav { 
   text-align: center;
}

* {
  box-sizing: border-box;
}

/* Create three unequal columns that floats next to each other */
.column {
  float: left;
  padding: 10px;
  background-image: url(/newspaper.jpg)
  background-size: cover;
  
}

.left {
  width: 20%;
  border-right-style: double;
  border-right-width: 5px;
  border-right-color: ##1A1C1A;
}

.right {
  width: 20%;
  border-left-style: double;
  border-left-width: 5px;
  border-leftt-color: ##1A1C1A;
}

.middle {
  width: 60%;
}

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