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

/*PAGE CONTAINER */
.indexcontainer {
    display: flex;
}

/* NAVBAR CONTAINER */
.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 CONTAINER */
.content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-grow: 1;
    height: auto;
}

.content iframe {
    max-width: 600px; 
}

.content video {
    max-width: 600px; 
}

 /* NAVBAR  */
.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 {
    width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
    align-items: center;
    justify-content: flex-start;
    }

    .content img {
    width: 96vw;  
    }

    .emailtext {
    padding-bottom: 10%;
    }

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

    .content iframe {
        
        width: 320px;
        height: 180px;
    }

    .content p {
        font-size: 10px;
        width: 320px;
        margin: auto;
    }
     
  }
