/* CSS for iPhones X */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3) {
    /* Add your styles for iPhone X here */
}

/* CSS for iPads */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (-webkit-min-device-pixel-ratio: 2) {
    /* Add your styles for iPads here */
}

/* CSS for desktops */
@media only screen and (min-width: 1025px) {
    body {
        font-size: 18px;
        max-width: 1024px;
        margin: 0 auto;
    }
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

hr {
    clear: both;
}
h1 {
	color: #006633;
	text-align: center;
	font-size: 30px;
}
	
h2 {
	color: #006633;
	text-align: center;
	font-size: 22px;
}

h3 {color: #006633;
	text-align: center;
	font-size: 18px;
}

h4 {color: #006633;
	text-align:left;
	font-size: 18px;
}

/* Name color red for invasives or weeds

h5 {color: crimson;
	text-align: center;
	font-size: 22px;
}
*/

img {
    border: 1px solid #555;
    border-radius: 10px; /* Optional: Adds rounded corners to the image */
}

body {
	background-color: #b7c797;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	padding-bottom: 30px;
}

.wrapper {
	width: 1000px;
	margin: auto;
	margin-bottom: 80px;
}

.auto {
    image-rendering: auto;
}

ul {
  list-style-type: none;
  padding: 0;
  overflow: hidden;
  position: fixed;
  bottom: 0;
  width: 965px;
  border: 2px solid #d1ff87;
  padding-bottom: 0px;
  margin-bottom: 20px;
  margin-left: 10px;
  margin-right: 10px;
}	 

/*original ul */
/* ul {
  list-style-type: none;
  padding: 0;
  overflow: hidden;
  position: fixed;
  bottom: 0;	
  width: 80%;
  border: 2px solid #d1ff87;
  padding-bottom: 0px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}
*/

li {
  float: left;
}

li a {
	display: block;
	color: #d1ff87;
	text-align: center;
	text-decoration: none;
	font: bold;
	/*font-size: 18px;*/
	font-size: 22px;

	/*padding: 10px 18px;*/
	padding: 5px 22px;
	font-weight: bold;
}

li a:hover:not(.active) {
  background-color: #488f45;
}

li a.active {
	color: #d1ff87;
	background-color: #488f45;
}

/* Clearfix (clear floats)
	.row::after {
  	content: "";
  	clear: both;
  	/*display: table;*/
}
