body  {
  background-color:#BBDCA6;
}

.bad{
	padding-top:200px;
}

.logo{
	margin-bottom:-60px;
}

.navbar {
  background-color: #14614C;
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 40px; 
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.navbar a {
  font-size: 16px;
  color: black;
  text-align: center;
  padding: 5px 0px;
  text-decoration: none;
}

.dropdown {
 
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 6px;  
  border: none;
  outline: none;
  color: #FFFFE7;
  padding: 6px 12px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
	
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: red;
	 padding: 10px 20px;
  background-color: inherit;
  color: #CBFF20;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
	text-align:center;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.goodbugs{
	padding-top:200px;
}

.buggif{
	padding-bottom: -200px;
	
}
div.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

div.gallery-item {
  margin: 5px;

  width: calc(25% - 20px);
}

div.gallery-item:hover {
  border: 1px solid #7C1032;
	border-radius:25px;
}

div.gallery-item img {
  width: 100%;
  height: auto;
}

div.gallery-item div.desc {
  padding: 15px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  div.gallery-item {
    width: calc(50% - 20px);
  }
}

@media only screen and (max-width: 480px) {
  div.gallery-item {
    width: calc(100% - 20px);
  }
}

body, html {
    height: 100%;
}

/* The hero image */
.hero-image {
  /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
  background-image:url("D:\www_folder\project_3\Photos\cropped\ladybug_1.jpg");

  /* Set a specific height */
  height: 50%;

  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}



.logo {
		padding: 20px;
		padding-bottom: 60px;
		margin-left: 0;
padding-left: 20px;
	}

.hero-text button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 10px 25px;
  color: black;
  background-color: #D9F09B;
	border-radius: 25px;
  text-align: center;
  cursor: pointer;
}

/* Place text in the middle of the image */
.hero-text {
	position:relative;
	/*top:-380px;*/
	bottom:400px;
	
  text-align: center;
 /* position: absolute;*/
  /*top: 50%;*/
  left: 10px;
  /*transform: translate(-50%, -50%);*/
  color: white;
}

h3{
font-family: "Belanosima", sans-serif;
  font-weight: 400;
  font-style: normal;
	font-size:35px;
}

h2, p {
  margin: 0px;
	padding-bottom:20px;
	font-family: "Barrio", system-ui;
  font-weight: 400;
  font-style: normal;
	font-size: 30px;
	
}

h4{
	font-family: "Capriola", sans-serif;
  font-weight: 400;
  font-style: normal;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #FFF496;
}

ul li {
	font-family: "Barrio", system-ui;
  font-weight: 400;
  font-style: normal;
	font-size: 30px;
	justify-content: center;
}

ul li a {
  display:flex;
  color: #B35A31;
  text-align:center;
  padding: 20px 20px;
  text-decoration: none;
	padding-top: 20px;
	justify-content: center;
}

ul li a:hover {
  background-color: #E8CD20;
	border-radius: 25px;
}

.footer {
   left: 0;
   bottom: 0;
   width: 100%;
	height:15%;
	padding-top:20px;
   background-color: #032117;
   color: #FFFFE7;
   text-align: center;
}
/********************SPECIFIC BUG PAGES HERE*******************************/

.bug-header {
  text-align: center;
  padding: 2rem;
  background: #DEF19F;
  border-bottom: 2px solid #ccc;
}

.bug-info {
  width: 90%;
  max-width: 700px;
  margin: 2rem auto;
}

details {
  background: #FFA378;
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid #ddd;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}