/* base stuff */
body {
  margin: 35px;
  background-image: url("day.webp");
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: cursive;
  background-color: rgb(244, 241, 232);
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  color: rgb(0, 0, 0);
}

h1 {
  font-size: 80px;
  font-family: cursive;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 90px;
}

h3 {
  text-align: center;
  font-family: cursive;
  font-size: 50px;
  border-top: 4px dotted rgb(0, 0, 0);
  border-bottom: 4px dotted rgb(0, 0, 0);
  font-weight: bold;
  padding: 20px 0;
  margin: 40px 20px 20px;
}

p {
  font-size: 20px;
  font-family: cursive;
  text-align: left;
  padding-left: 40px
}

/*other*/
.flower-grid {
  font-family: cursive;
    display: grid;
    gap: 15px;
    width: fit-content;
    margin: 40px auto;
    justify-content: center;
    align-items: start;
}

.poem {
  background-color: rgb(250, 247, 239);
  font-family: cursive;
  border: 1px solid rgb(0, 0, 0);
  padding: 40px;
  margin: 40px auto;
  width: 55%;
  box-shadow: 4px 4px 0 rgb(82, 90, 106);
  font-size: 26px;
  text-align: center
}
.poem h5::first-letter {
  font-size: 36px;
  font-family: cursive;
  font-weight: bold;
  float: left-top;
  padding-right: 3px;
}

details {
  background: rgb(253, 250, 242);
  border: 1px solid rgb(0, 0, 0);
  box-shadow: 2px 2px 0 rgb(82, 90, 106);
  padding: 8px 12px;
  margin-bottom: 12px;
}

/*flowers and their meanings*/
summary {
  font-weight: bold;
  font-family: cursive;
  font-size: 18px;
  cursor: pointer;
  list-style: none;
  text-align: center;
}
ul {
  padding-left: 20px;
}
li {
  margin-bottom: 4px;
  line-height: 1.4;
}

.home img {
  border: 1px solid rgb(0, 0, 0);
  padding: 6px;
  background: rgb(255, 255, 255);
  box-shadow: 2px 2px 0 rgb(82, 90, 106);
}