
*{
  margin: 0px;
  padding: 0px;
}

.header{
  background-color: #60b580;
  z-index: 1;

}
h1{
  top: 100%;
  color: #A66659;
  background-color: #53babf;
  display: inline-block;
  text-align: left;
  padding: 10px;
  z-index: 2;
}

.hover-icon {
  transition: transform 0.3s ease; /* Smooth transition */
}

.hover-icon:hover {
  transform: scale(1.2); /* Increase size to 120% */
}

.subhead{
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  font-size: 10em;
  background-image: url("images/forest.jpg");
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 50px;
  min-height: 100vh;
}

.hidden{
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-100%);
  transition: all 1s;
}

.show{
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

body{
  background-color:#85F5AF;
  z-index: 2;
}
.body2{
  display: grid;
  place-items: center;
  align-content: center;
  margin: 0; /* Remove default margin */
  padding: 10px; /* Optional: Add padding inside the border */
  font-size: 2em;
  background-image: url("images/desert.jpg");
  background-size: cover;
  padding-bottom: 100px;
  min-height: 100vh;
}

.body3{
  display: grid;
  place-items: center;
  align-content: center;
  margin: 0; /* Remove default margin */
  padding: 10px; /* Optional: Add padding inside the border */
  font-size: 22px;
  background-image: url("images/beach.jpg");
  background-size: cover;
  padding-bottom: 100px;
  min-height: 100vh;
}

.image-container {
  position: relative;
  display: inline-block; /* Or use a specific width/height */
}

.script{
  padding-left: 400px;
}

.content {
  background-color: rgb(9, 110, 110);
}