* {
  box-sizing: border-box;
}

body {
   background-image: url("../grasslands.jpg");
   background-repeat: no-repeat;
   background-position: 50% 50%;
   font-size: 20px;
   font-family: "Times New Roman";
   margin: 0;
}

 .sidenav {
  height: 100%; /* Full-height: remove this if you want "auto" height */
  width: 160px; /* Set the width of the sidebar */
  position: fixed; /* Fixed Sidebar (stay in place on scroll) */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: #563d41; 
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 20px;
}

/* The navigation menu links */
.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 25px;
  color:  #f1f1f1;
  display: block;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color:#43cc6e;
}

/* Style page content */
.main {
  margin-left: 160px; /* Same as the width of the sidebar */
  padding: 0px 10px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidebar (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
/*end added for nav*/

/* Page content. The value of the margin-left property should match the value of the sidebar's width property */
div.content {
  margin-left: 200px;
  padding: 1px 16px;
  height: 1000px;
}

/* On screens that are less than 700px wide, make the sidebar into a topbar */
@media screen and (max-width: 700px) {
  .sidenav {
    width: 100%;
    height: auto;
    position: relative;
  }
  .sidenav a {float: left;}
  div.content {margin-left: 0;}
}




summary {
	font-weight: bold;
	}

.header {
	padding: 10px;
	font-size: 30px;
	text-align: center;
	border-color: #c1c0b5 ;
	border-style: ridge;
	border-width: 0 0 4px 0;
}

.leftcolumn {   
	float: left;
	width: 200px;
	padding-right: 20px;
  
}
.middlecolumn {
	float: left;
	width: 60%;
	padding-left: 20px;
	margin-left: 10px;
	text-align: center;
	
	}

.rightcolumn {
	float: left;
	width: 25%;
	padding-left: 20px;
 
}


.img {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}


.card {
	padding: 5px;
	margin-top: 8px;
	border-color: #c1c0b5 ;
	background-color: #efefef;
	border-style: ridge;
	border-width: 2px 2px 2px 2px;
}
.card-side{
	padding: 5px;
	margin-top: 8px;
	border-style: ridge;
	border-width: 2px 2px 2px 2px;
	background-color:#efefef;
	overflow: auto;
  }
  
.card-about{
	display: flex-column;
	align-items: center;
	justify-content: center;
	border-style: ridge;
	border-width: 2px 2px 2px 2px;
	background-color:#efefef;
	margin-left: 160px;
	margin-top: 10px;
	padding: 10px;

}
 .card-blog{
	display: flex-column;
	align-items: center;
	justify-content: center;
	border-style: ridge;
	border-width: 2px 2px 2px 2px;
	background-color:#efefef;
	margin-left: 160px;
	margin-top: 10px;
	padding: 10px;
	overflow: auto;
}
  .card-side-blog{
	display: flex-column;
	align-items: center;
	justify-content: center;
	padding: 5px;
	margin-top: 10px;
	border-style: ridge;
	border-width: 2px 2px 2px 2px;
	background-color:#efefef;

  }
  
	.card-species{
	display: flex-row;
	align-items: center;
	justify-content: center;
	width:25%;
	padding: 5px;
	margin-top: 8px;
	border-style: ridge;
	border-width: 2px 2px 2px 2px;
	background-color:#efefef;
	
	}
	
	.card-storage{
	display: flex-row;
	align-items: center;
	justify-content: center;
	width:25%;
	padding: 5px;
	margin-top: 8px;
	border-style: ridge;
	border-width: 2px 2px 2px 2px;
	background-color:#efefef;
	
	}

.row:after {
	content: "";
	display: flex;
	clear: both;
}
.terrarium{  /*seemed the appropriate term */
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	gap: 10px;
	
	
}

.toolbox{ /*also couldn't resist */
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	gap: 10px;
	
	
}


.update-box 
{
	height:300px;
	width:100%;
	background-color:FFFFCC;
	font-family:Helvetica;
	font-size:8pt;
	color:336600;
	text-align:left;
	border-width:1;
	border-style:ridge;
	border-color:663300;
	overflow:scroll;
	overflow-x: hidden; 

}

.update-box .box-title {
	position: absolute;
    display: inline-block;
    top: 0px;
    left: 0px;
    padding: 2px 5px;
    height: 10px;
    vertical-align: middle;
    font-size: 15px;
    background: #563d41;
    color: brown; /*text color*/
    font-weight: bold;
    }
    

.footer {
	padding: 20px;
	text-align: center;
	
	margin-top: 20px;
	margin-left: 200px;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .middlecolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}


