body {
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: rgb(0, 0, 0);
    overflow-y: scroll;
    overflow-x: hidden;
}

a {
    color: unset;
    text-decoration: unset;
}

.navbar{
    z-index:10;
    position: relative;
    top: 15px;
    left: 0px;
    width: 100%;
    display: flex;
    flex-direction: row;
    height: 8vh;
    justify-content: space-around;
    align-items: center;
    background-color: rgba(136, 156, 134, 0.616);
    text-transform: capitalize;
    font-size: x-large;
    color: black;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

.navbar-link {
    z-index: 11;
    cursor:pointer;

}

.content{
    position: absolute;
    overflow-y: hidden;
    height: fit-content;
    display: flex;
    flex-direction: column;
    width:100vw;
    align-items: center;
    justify-items: center;
}

.social-media-links-section {
    z-index: 10;
    display: flex;
    flex-direction: row;
    position:relative;
    justify-content: space-around;
    width: 500px;
    margin-bottom: 30px;
}

.social-media-link{
    display: flex;
    flex-direction: row;
    width: 250px;
    justify-content:center;
    align-items: center;
}

.social-buttons {
    padding: 10px;
    width:1.5em;
    height: 1.5em;
}

.main-section {
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    top: 10px;
    background-color: rgba(207, 239, 204, 0.616);
    width: 90vw;
    max-width: 1200px;
    margin:5%;
    height: fit-content;
    /* justify-content: center;
    align-items: center; */
    /* border: 1px red solid; */
}

.poem-and-text {
    display: flex;
    flex-flow: row wrap;
    width: fit-content;
    /* justify-content: center; */
    align-items: center;
}
.poem-inset {
    display: flex;
    z-index: 3;
    background-color: rgba(235,235,235,0.5);
    margin: 20px;
    width: 40%;
    padding: 20px;
    border: 1px rgba(0,0,0,0.2) solid;
    min-height: fit-content;
   
}

.poem-adjacent {
    width:30%
}

#background-mask {
    z-index: 1;
    position:fixed;
    top: 0px;
    left: 0px;
    display: flex;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background-color: rgb(181, 201, 180);
}

#background-image {
    z-index: 0;
    width: fit-content;
    opacity: 0.2;
}