body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
}

.container {
    width: 80%;
    max-width: 800px;
    margin: 50px 0;
}

.content-box {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #242842;
}

h2 {
    margin-top: 0;
    color: #2c3e50;
}


blockquote {
  font-style: italic;
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 20px 0;
  padding: 10px 20px;
  font-size: 1.2em;
}

cite {
  display: block;
  margin-top: 10px;
  text-align: right;
  font-weight: bold;
}

.poem {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.poet {
  font-weight: bold;
  margin-top: 20px;
  margin-left: 50%;
}

.next-button {
  display: inline-block;
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.next-button:hover {
  background-color: #45a049;
}

footer {
  background-color: #f2f2f2;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  width: 100%; /* 가로로 전체 페이지 차지 */
  position: relative; /* 기본 위치에 있음 */
}

footer p {
  margin: 5px 0;
  font-size: 1em;
}

footer a {
  color: #1a73e8;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
