@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

:root {
  --sage-light: #E9F5E7; 
  --text-color: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

body {
  background-color: var(--sage-light);
  font-family: 'Montserrat', sans-serif;
  color: var(--text-color);
}

.poem {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  max-width: 300px;
  text-align: right;
}

.poem p {
  font-size: 0.875rem;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .poem {
    right: 2rem;
    bottom: 2rem;
  }
}