/* Glyph, by Harry Roberts */
hr{
    overflow: visible; /* For IE */
    padding: 0;
    border: none;
    border-top: medium double #900;
    color: #900;
    text-align: center;
}
hr:after {
    content: "§";
    display: inline-block;
    position: relative;
    top: -0.7em;
    font-size: 1.5em;
    padding: 0 0.30em;
    background: rgb(0, 0, 0);
}


.centered-text { 
    text-align: center;
    margin: 0 auto;
    max-width: 650px; 
}

.title { 
    color: darkred; 
    text-align: center; 
}

.poem { 
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16pt; 
    line-break: auto; 
    line-height: 2; 
    color: #fff; 
}

strong {  
    color:darkred;
    font-family: OldEnglish;
}
.collapsible {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 5px;
    width: 10%;
    display: flex;
    margin: auto;
    border: none;
    /* text-align: left; */
    outline: none;
    font-size: 15px;
    justify-content: center;
    align-items: center;
    /* font-family: monospace; */
    font-weight: 800;
    margin-top: 20px;
    margin-bottom: 20px;
}
.collapsible:after {
    /* content: '\02795'; /1* Unicode character for "plus" sign (+) *1/ */
    font-size: 13px;
    color: white;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2796";
} 

.active, .collapsible:hover {
    background-color: #333;
    color: #f8f8f8;
}

/* Style the collapsible content. Note: hidden by default */
.content {
    padding: 0 18px;
    overflow: hidden;
    max-height: 0;
    overflow: hidden;
    background-color: #000;
    transition: max-height 0.4s ease-out;
}


#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: rgb(152, 28, 17); /* Set a background color */
    color: rgb(0, 0, 0); /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}

#myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}


    @media all and (max-width: 30em) {
.collapsible {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 10px;
    width: 70%;
    display: flex;
    border: none;
    outline: none;
    font-size: 15px;
    justify-content: center;
    font-weight: 800;
    margin-top: 20px;
    margin-bottom: 20px;
}
