* {
  box-sizing: border-box;
}

body {
  font-family: 'Courier New', Courier, monospace;
  text-align: center;
}

/* Style the header */
header { 
  background-image: url(PICTURE/Daendelion.jpg);
  background-size: cover;
  height: 25vh;
  min-height: 50px;
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
  font-size: 35px;
  color: rgb(255, 255, 255);
}

/* create one column under header */
nav ul {
  background-color: #f2f1f2;
  padding: 30px;
  text-align: center;
  font-size: 35px;
  color: rgb(5, 5, 5);
}

/* Style the list inside the menu */
nav ul {
  list-style-type: none;
  padding: 0;
}

/* Create two equal columns that float next to each other */
.column {
  float: left;
  width: 50%;
  padding: 10px;
  height: 400px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Style the footer */
footer {
  background-color: rgb(235, 230, 220);
  padding: 20px;
  text-align: center;
  font-size: 20px;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bolder;
  color: rgb(80, 50, 35);
}

/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other on small screens */
@media (max-width: 600px) {
  .column {
    width: 100%;
    height: auto;
  }
}
