body {
    background-color: antiquewhite;
    color: rgb(84, 40, 84);
} 

p {
    font-family: 'Times New Roman', Times, serif;
    font-style: normal; 
    color: rgb(84, 40, 84);
}

h1 {
    color: rgb(84, 40, 84);
    font-family: 'Astloch';
    margin-left:5%;
    margin-top: 5%;
    padding: 0px;
}

img {
    float: right;
    margin-right: 100px;
}

/*navigation bar + header alignment/ formatting */

.navbar {
    color: rgb(84, 40, 84);
    float: top;
  list-style-type: none;
}

.navopt { 
    font-family: 'Astloch';
  float: left; /*to make the list items in the nav bar one after another*/
  margin-left: 70px;
  margin-right: 70px;
  margin-top: 5%;
  text-decoration: none; 
}

.top-of-page { /*aligns the navbar to the header, but the function here is referring
    to the two of them as a group*/
    display: flex;
    justify-content: space-between;
    padding: 0px;
    
}


/*end of navigation bar + header alignment/ formatting */


/*margins for indenting poetry lines differently*/ 

.line1 {
  margin-left: 80px;
  margin-top: 50px;
}

.line2 {
    margin-left: 130px;
    margin-top: 50px;
}

.line3 {
    margin-left: 200px;
    margin-top: 70px;
}

/*end of line indenting styling*/

/* about page specific*/

.about-bio {
    text-align: center;
    margin-left: 15%;
    margin-right: 15%;
    margin-top: 15%;
}

/*poetry and prose pages specific*/

.poems {
    margin-left: 5%;
}

.prose-pieces {
    margin-left: 5%;
}

/* working out the poetry page, how to make the poems appear*/

/*dunno what is going on down there but its woring ...*/

/* for poetry list*/

.toggle-trigger {
            cursor: pointer;
            color: rgb(84, 40, 84);
        }

        .toggle-trigger:hover {
            color: #2c445d;
        }

        .toggle-text { /*this is where i need to mess around with format*/
            display: none;
            margin-top: 10px;
            padding: 15px;
        }

        .toggle-text.show {
            display: block;
        }



/* end of working out the poetry page, how to make the poems appear*/





