body {
  font-family: "Times New Roman";
  margin: 0;
  background-color:cornsilk;
  background-attachment: fixed;
  color: #000;
}

#container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.blurb {
  max-width: 900px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.95);
  color: #000;
  padding: 20px;
  text-align: center;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

main {
  flex: 1;
  padding: 20px;
  order: 2;
  margin: 0 auto;
}

h1,
h2,
h3 {
  color: #000;
}

h1 {
  font-size: 25px;
  font-family: cursive;
}


.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create three equal columns that sits next to each other */
.column {
  -ms-flex: 49%; /* IE10 */
  flex: 49%;
  max-width: 49%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}


#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 60px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: black;
  color: white;
  cursor: pointer;
  padding: 15px;
  font-size: 40px;
  font-family: "DOS";
}

#myBtn:hover {
  background-color: #555;
}

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

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}