/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  background-color: #F68814;
  font-family: Georgia, serif;
  color: #000;
  line-height: 1.6;
  padding: 20px;
}

/* Header */
header.centered {
  text-align: center;
  margin-bottom: 30px;
}

header h2 {
  font-size: 1.8em;
  margin-top: 20px;
}

.header-image {
  width: 125px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.25);
}

/* Aphorism List */
.aphorisms {
  max-width: 900px;
  margin: auto;
  background: rgba(255, 255, 255, 0.25);
  padding: 20px;
  border-radius: 10px;
}

.aphorisms ol {
  padding-left: 30px;
}

.aphorisms li {
  margin-bottom: 12px;
}

/* Home Button */
.home-link {
  text-align: center;
  margin-top: 40px;
}

.home-link hr {
  width: 30%;
  border: 1px solid #333;
  margin: 0 auto 20px auto;
}

.home-link img {
  border-radius: 4px;
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.home-link img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media screen and (max-width: 600px) {
  body {
    padding: 15px;
  }

  header h2 {
    font-size: 1.4em;
  }

  .aphorisms {
    padding: 15px;
  }
}
