* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  background-color: #F3E3C8 
}

main{
  text-align: center;
  color:  #434A3D;
}


/* nav bar */
.topnav {
  overflow: hidden;
  background-color: #CDDEB6;
}

.topnav a {
  float: right;
  color: #2B2F27;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #434A3D;
  color: black;
}

/*Flexbox*/

.flex-container {
  display: flex;
  justify-content: center;
}
.flex-container > div {
  width: 350px;
  margin: 10px;
  text-align: center;
  line-height: 75px;
  font-size: 30px;
}

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 50px;
  color:  #434A3D;
}

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

.row {
    padding: 60px;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
    width: 100%;
    font-size: 10px;
  }
    
}