body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }
    .container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 20px;
    }
    .header {
      display: flex;
      align-items: center;
      background-color: #fff;
      color: #333;
      padding: 20px;
    }
    .header h1 {
      margin: 0;
      font-size: 2em;
    }
    .header img {
      height: 240px;
      border-radius: 50%;
      margin-right: 20px;
    }
    .bio {
      font-size: 1.2em;
      line-height: 1.5;
    }
    .bio p {
      margin: 20px 0;
	  text-align: justify;
    }
    .bio h2 {
      font-size: 1.5em;
      margin: 20px 0 10px;
    }
	
	img.art-img {
		float: right;
		width: 30%;
		padding-left: 1em;
		padding-bottom: 1em;
		padding-top: 0.25em;
	}
	
	.image-holder {
		float: right;
		width: 40%;
		padding-left: 1em;
	}
	
	.image-holder-susan {
		float: right;
		width: 25%;
		padding-left: 1em;
		padding-top: 0.25em;
	}
	
	.image-holder-john {
		float: right;
		width: 25%;
		padding-left: 1em;
		padding-top: 0.25em;
	}
	
	.image-holder-grave {
		float: right;
		width: 25%;
		padding-left: 1em;
		padding-top: 0.25em;
	}
	
	.image-holder p {
		font-size: 0.7em;
		text-align: center;
		margin-top: 0.05em !important;
		margin-bottom: 0;
		font-style: italic;
	}
	
	.art-img-landscape {
		width: 100%;
	}
	
	.image-holder-grave img {
    width: 100%;
	}
	
	.image-holder-susan img {
    width: 100%;
	}
	
	.image-holder-john img {
    width: 100%;
	}
	
	.nav {
      display: flex;
      background-color: #333;
      padding: 10px;
	  border-top: 1px solid #fff;
    }
    .nav a {
      color: #fff;
      text-decoration: none;
      font-size: 1.2em;
      margin-right: 20px;
    }
    .nav a:hover {
      color: #cbcaca;
    }
	
	.navbar {
      display: flex;
      background-color: #333;
      padding: 10px;
	  border-top: 1px solid #fff;
    }
    .navbar a {
      color: #fff;
      text-decoration: none;
      font-size: 1.2em;
      margin-right: 20px;
    }
    .navbar a:hover {
      color: #cbcaca;
    }
	
	.menu-icon {
  display: inline-block;
  cursor: pointer;
}

.menu-icon span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #333;
  margin: 4px 0;
}

.poem p {
    font-style: italic;
}

button {
    float: right;
    padding: 0.5em;
    padding-top: 0;
    background-color: #333333;
    color: #fff;
    border: none;
    width: 100%;
    font-size: 1.25rem;
    margin-bottom: 1em;
}

img.burger-menu {
    float: left;
}
	
	/* Mobile-specific styles */
  @media only screen and (max-width: 600px) {
    .navbar {
      flex-direction: column;
      align-items: center;
    }
    .navbar a {
      margin: 10px 0;
      display: block;
      text-align: center;
    }
  }

  /* Hide navbar on screens wider than 600px */
  @media only screen and (min-width: 601px) {
    .navbar {
      display: none;
    }
  }
	
	
	
	/* Mobile-specific styles */
  @media only screen and (max-width: 600px) {
    .navbar {
      flex-direction: column;
      align-items: center;
    }
    .navbar a {
      margin: 10px 0;
      display: block;
      text-align: center;
    }
  }

  /* Hide navbar on screens narrower than 500px */
  @media only screen and (max-width: 599px) {
    .nav{
      display: none;
    }
	
	.image-holder-grave {
    width: 40%;
    }
  }
  
  
  /* Mobile-specific styles */
  @media only screen and (max-width: 600px) {
    .navbar {
      display: flex;
      flex-direction: column;
      align-items: center;
      /* Hide the navigation bar by default */
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.2s ease-out;
    }
    .navbar.expanded {
      /* Show the navigation bar when the "expanded" class is applied */
      max-height: 500px;
    }
    .navbar a {
      margin: 10px 0;
      display: block;
      text-align: center;
    }
	
	
  }
  
  /* Hide toggle button on screens wider than 600px */
  @media only screen and (min-width: 600px) {
    button {
      display: none;
    }
  }
  
  footer p {
    font-size: 0.8em;
    text-align: right;
    padding-right: 1em;
}