* {
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
}

html {
  /* px means "pixels". The base font size is now 10 pixels high */
  font-size: 20px;
  /* Replace PLACEHOLDER with the font-family property value you got from Google Fonts */
  font-family: "EB Garamond", serif;
  background-color: #E0F0E4;
  
  color: #1E1415;
}

h1 {
  font-family: "Montserrat", sans-serif;
  padding-bottom: 10px;
}

.writing {
  padding: 50px 0px 0px 50px;
}

.poem-text {
    padding: 20px 0px 20px 50px;
    display: flex;
    flex-direction: column;
}

.poem-author{
    padding: 20px 0px 20px 0px;
}

nav {
  background-color: #6D9D82;
  /*display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: right;
  border-bottom: 0.5px dotted black;*/
}

nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li{
    height: 50px;
    font-size: 22px
}

nav a{
    height: 100%;
    padding:0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #FFFDF6;
}

nav li .current {
  text-decoration: underline;
}

nav .hoverIndicator:hover{
  background-color: #86B199;
}

nav li:first-child{
    margin-right: auto;
}

.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: #6d9d82;
    /* backdrop-filter: blur(10px); */
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar li{
    width: 100%;
}

.sidebar a{
    width: 100%;
}

.menu-button{
    display: none;
}

img {
    height: 100vh;
    object-fit:cover;
    
}

@media(max-width: 1000px) {
    main {
        flex-direction: column;
    }
    main section {
        padding: 10%;
    }
}

@media(max-width: 450px) {
    .hideOnMobile{
        display: none;
    }
    .sidebar{
        width: 100%;
    }
    .menu-button{
        display:block;
    }
}

@media(max-width: 225px) {
    .hideOnSuperTiny{
        display: none;
    }
}


main {
  display: flex;
}

main section {
  padding: 5%;
  justify-content: center;
  align-content: center;
}
main img {
  width: 100%;
}

.main-text p {
    padding: 10px 0px 10px 0px;
}

.green-link {
  color: #3e8463;
}

.orange-text:hover {
    color: #ff8f00;
}

.green-link:hover {
  color: #86B199;
  text-decoration: none;
}
