/* Applies to the entire body of the HTML document (except where overridden by more specific
selectors). */
body {
  margin: 0px;
  background-color: #fbf8ef;
  font-family: arial, sans-serif;
  font-size: 14px;
}
/* Applies to all <h1>...</h1> elements. */
h1 {
  font-size: 60px;
  font-weight: bold;
  font-family: "Alex Brush", cursive;
  margin-top: 10px;
  color: red;
}

/* Applies to all <h2>...</h2> elements. */
h2 {
  font-size: 45px;
  font-weight: normal;
  font-family: arial, sans-serif;
  font-size: 14px;
  margin-top: 1px;
  color: black;
}

/* Applies to all <h3>...</h3> elements. */
h3 {
  font-size: 45px;
  font-weight: normal;
  font-family: arial, sans-serif;
  font-size: 24px;
  margin-top: 1px;
  color: black;
}

.mysection {
  background-color: #fffdd0;
  width: 100%;
  border-style: solid;
  border-width: 5px;
  border-color: #000;
}

.column {
  float: left;
  width: 33%;
  padding-top: 10px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
.center {
  margin-left: auto;
  margin-right: auto;
}
