body, html {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-style: italic;
    background-color: #ffffff;
}

.indexcontainer {
    display: flex;
}

/* NAVBAR */
.sidebar { /* builds fixed sidebar */
    display: flex;
    flex-direction: column;
    height: 100vh;
    min-width: 200px;
    border-right: 1px solid black;
    background-color: #ffffff;
    padding-top: 20px;
    
    
}

/* MAIN INDEX CONTENT */
.content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    height: 100vh;
}

.content img {
    max-width: 1200px;
}


 /* NAV links  */
.pages a {
    padding: 1px 25px; /* text design class */
    font-family: "Spectral", serif;
    font-style: normal;
    text-decoration:none;
    font-size: 30px;
    font-weight: 700;
    color: rgb(55, 55, 55);
    display: block;
}


.pages a:hover { 
    font-style: italic; /* text design class */
}

.emailtext a {
    font-family: Georgia, 'Times New Roman', Times, serif; /* text design class */
    padding: 0px 25px;
    text-decoration:none;
    font-style: italic;
    font-size: 14px;
    color: rgb(53, 53, 53);
    display: block;
} 
.emailtext a:hover {
    font-style:normal; /* text design class */
}



.customhr {
    border:none;
    border-top: 1px solid black;
    width: 80%;
    margin-bottom: 15%;
    margin-top: 15%;
  }

  /* Responsive layout */
  @media screen and (max-width: 800px) {
    .indexcontainer {
    flex-direction: column;
    }
    .sidebar {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    width: 100vw;
    border-right: none;

    }
    .content {
    flex-direction: column;
    box-sizing: border-box;
    height: auto;
    width: auto;
    align-items: flex-start;

    }

    .emailtext {
    padding-bottom: 10%;
    }

    .customhr { 
    margin-bottom: 10px;
    margin-top: 10px;
    width: 90%;
    }

    .content img {
        padding-bottom: 5%;
    }

     
  }