body {
    background-color: #a3b2a4;
    font-family: "Karumbi Regular"; 
    color: #6A4E5A;

    /* center children vertically/horizontally */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.book-container {

    background-color: #c1b2a2;
    width: 400px;
    height: 400px;
    text-align: center;
    margin: auto;
    margin-top: 8rem;
    padding-top: 80px;
    border-radius: 0 36px 36px 0;
    position: relative;

}

.book-title {
    display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  text-align: center;
  font-size: 23px;
}

input {
    border-radius: 50px;
    border: none;
    height: 50px;
    width: 200px;
    padding-left: 10px;
    text-align: center;
}

input:focus {
    border-color: #a3b2a4;
}

svg {
    position: absolute;
    z-index: 3;
    right: 0;
    top: 50%;
    left: 95%

}

#open {
    visibility: hidden;
}


.home-page-title {
    display: flex;
  justify-content: center;
  align-items: center;
  font-size: larger;


}

.book-open {
    position: relative;
    margin: 20px;
    display: flex;
    height: 1100px;
    
}


.left-page {
    display: flex;
    background-color: #c1b2a2;
    width: 700px;
    border-radius: 36px 0 0 36px;
    flex-direction: column;
}

hr.dotted {
    /* transform: rotate(90deg); */
    position: absolute;
    margin: auto;
    border: 2px dotted #c1b2a2;
    height: 1100px;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    


}

.right-page {
    display: flex;

    background-color: #c1b2a2;
    width: 700px;
    border-radius: 0 36px 36px 0;
    flex-direction: column;

}

.text {
    display: flex;
    padding: 15px;
    background-color: #efdbb2;
    margin: 50px;
    height: 1000px;
    flex-direction: column;
     
}
#poem-page {
    margin: 0;
    width: 600px;
    max-width: 600px;
    padding: 20px;
    display: flex;
    height: auto;
    align-items: flex-start;
}

.text#poem-page {
    height: auto;
    min-height: unset;
}

#right {
    display: flex;
    flex-direction: column;
    margin-left: 0;
    align-items: center;
    /* vertical stacking will naturally start at top */
}


.back-arrow {
    position: fixed;
    top: 20px;
    left: 30px;
    z-index: 100;
    font-size: 2rem;
}

.back-arrow a {
    text-decoration: none;
} 

/* writing list styling used on home page */
.writing-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}
.writing-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.writing-list a {
    font-size: 1.5rem;
    text-decoration: underline;
    color: inherit;
}
.writing-list a:hover {
    color: #3e2f3c;
}

#left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-right: 0;
}

#left h1 {
    margin-top: 2rem;
    align-self: center;
}
h6, p {
    font-size: 20px;
}


#story-page {
    width: 816px;
    max-width: 816px;
    padding: 60px 80px;
    align-items: flex-start;
    height: auto;
    min-height: 600px;
}

.story-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

.story-paragraph {
    font-size: 18px;
    line-height: 1.8;
    text-indent: 2.5em;
    margin-bottom: 0;
    margin-top: 1.2em;
}

.story-byline {
    text-align: center;
    font-style: italic;
    margin-top: -1rem;
    margin-bottom: 2rem;
    font-size: 18px;
}

.story-poem {
    margin: 1.5rem auto;
    text-align: center;
    font-style: italic;
    line-height: 1.9;
    font-size: 18px;
}

.story-no-indent {
    text-indent: 0;
}
