/* 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." */

* {
  box-sizing: border-box;
}

body {
  font-family: Geneva;
  a.link: {
    color: DarkSeaGreen;
    }
  a:visited {
    color: DarkSeaGreen;
    }
  a:hover {
    color: HotPink;
    }
  a:active {
    color: HotPink;
    }
}

/* Create two equal columns that floats next to each other */
.column1 {
  float: left;
  width: 30%;
  padding: 10px 20px 10px 30px;
  height: 300px; /* Should be removed. Only for demonstration */
}

.column2 {
  float: left;
  width: 70%;
  padding: 10px 30px 10px 30px;
  height: 300px; /* Should be removed. Only for demonstration */
}

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

.homehead {
  font-size: 20px;
}

.hometext {
  font-size: 14px;
}

.prose {
  margin: 60px 15% 100px 15%;
  line-height: 160%;
}

.poem {
  margin: 60px 15% 60px 30%;
  line-height: 160%;
}

.by {
  font-family: Courier;
}

.note {
  font-size: 10px;
  text-align: center;
}

.copy {
  font-size: 8px;
}
