/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  
  background-image: url("d36-bg-polkadot.gif");
}

h1 {
  text-align: right;
  font-size: 60px;
  color: #7b4734;
  font-weight: normal;
  margin: 1px;
  
}

h2 {
  background-color: white;
  background-image: url("m13-bg-tattersall.gif");
  border: 1px solid black;
  margin: 5px;
  padding: 5px;
  text-align: center;
  
}

h3 {
  background-color: white;
  background-image: url("ca24-bg-stripe.gif");
  border: 2px double pink;
  font-size: 20pt;
  margin: 5px;
  padding: 5px;
}



 main {
	 max-width: 70%;
	 background-color: #fff;
	 border: 2px double pink;
	 flex: 1;
	 position: relative;
	 margin-left: auto; 
  margin-right: 0;
  overflow-wrap: break-word;
  flex-grow: 1;
}


nav {
    max-width: 20%;
    margin-left: 0; 
    margin-right: auto;
    position: relative;
    font-size: 10pt;
    order: 1;
    
}

.navlist {
  list-style-image: url('bulletpoint.png');
  
}

.navlist li {
  background-color: white;
  background-image: url("c01-bg-grid.gif");
  padding: 1px 1px 1px 1px; /* space for icon */
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 10pt;
  text-align: center;
  margin: 2px;
}

.layout {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.header-row {
  display: flex;
  justify-content: center; 
  align-items: baseline; 
  gap: 20px; 
}

.content-row {
  display: flex;
  justify-content: space-between; 
  gap: 20px;                      
  flex-wrap: wrap;                
}


.content-box {
  margin: 10px;
  flex: 1 1 45%;                  
  border: 2px double pink;
  background: #fff;
  padding: 5px;
  box-sizing: border-box;
  text-align: right;
}

.eye-box {
    width: 100%;
  max-width: 500px; /* Adjust as needed */
  margin: 5px ;
  text-align: center;
  background: #fff;
  border: 2px double pink;
  padding: 10px;
  box-sizing: border-box;
  text-align: left;
  display: flex;
}


.journal-title {
  text-align: center;
  margin-bottom: 5px;
  border-bottom: 3px double pink;
  padding-bottom: 5px;
}

.journal-container {
  max-width: 700px;
  margin: 0 auto;
}

.entry {
  border: 2px double pink;
  background-color: #fff;
  padding: 20px;
  margin-bottom: 30px;
  
}

.entry-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}

.entry-title {
  font-size: 1.4em;
  margin: 0;
}

.entry-date {
  font-size: 0.9em;
  color: #666;
}

.entry-image {
  max-width: 100%;
  margin-top: 10px;
  border: 1px solid #999;
}

.journal-header {
  font-size: 1.4em;
  background-color: white;
  border-bottom: 2px solid #ccc;
  padding: 5px 0;
  text-align: left;
}

.side-image {
  width: 150px; 
  height: auto;
}
.about-container {
  overflow: hidden;
  overflow: auto;
  line-height: 1.5;
}

.about-img {
  float: left;
  width: 250px; 
  margin-right: 15px;
  margin-bottom: 10px;
  margin-left: 5px;
  margin-right: 5px;
  border: 2px double pink;
  padding: 4px;
  background-color: white;
}

