/* .home-top */
.home-top {
  justify-content: center;
  align-items: top;
}

/* #div-one-one */
#div_one_one {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

/* .home-right */
.home-right {
  float: left;
  align-items: center;
  justify-content: center;
}

/* h2#background_p_head */
h2#background_p_head {
  font-family: "Shrikhand", cursive !important;
  font-size: 40px;
}

/* h2.s_head */
.s_head {
  font-family: "Shrikhand", cursive !important;
  font-size: 40px;
}


/* .s_body */
.s_body {
  font-size: 20px !important;
}


/* .title_bar */
.title_bar {
  font-family: "Shrikhand", cursive !important;
  font-size: 25px;
}

/* .info_bar */
.info_bar {
  font-size: 20px !important;
}

/* .body-text-1 */
.body-text-1 {
  text-align: left;
}

/* .home-title */
.home-title {
  color: #013014;
  font-family: "Shrikhand", cursive;
  font-size: xxx-large;
  animation: slideInFromLeft 0.5s ease-in;
  opacity: 0; /* Initially hidden */
  animation-fill-mode: forwards; /* Retain animation's end state */
}

/* .home-text */
.home-text {
  color: #013014;
  font-family: "Open Sans", sans-serif;
  font-size: large;
  animation: slideInFromLeft 0.5s ease-in 0.5s;
  opacity: 0; /* Initially hidden */
  animation-fill-mode: forwards; /* Retain animation's end state */
}

/* Keyframes for slide-in animation */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* .home-button */
.home-button {
  display: block;
  padding: 10px 20px;
  background-color: #F4F1DE;
  color: #013014;
  font-family: "Open Sans", sans-serif;
  font-size: large;
  border: 2px solid #013014;
  border-radius: 5px;
}

.home-button:hover {
  color: #F4F1DE;
  background-color: #013014;
}

/* .home-plant */
.home-plant {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10%;
}

/* .home-plantimg */
.home-plantimg {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-plantimg img {
  max-width: 80%;
  max-height: 20%;
  overflow: hidden;
}


/* .home-imgrow */
.home-imgrow {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-left: 5%;
  margin-right: 5%;
}

.home-imgrow img {
  max-width: 100%;
  object-fit: cover;
  overflow: hidden;
}

/* .home-buttonrow */
.home-buttonrow {
  padding-top: 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

/* Specific styles for each button */
.home-buttoninrow1,
.home-buttoninrow2,
.home-buttoninrow3 {
  padding: 200px 100px;
  font-family: "Open Sans", sans-serif;
  font-size: 25px;
  color: #F4F1DE;
  text-shadow: 2px 2px 4px #013014;
  border: 2px solid #F4F1DE;
  border-radius: 5px;
  transition: transform 0.5s ease;
}

.home-buttoninrow1:hover,
.home-buttoninrow2:hover,
.home-buttoninrow3:hover {
  transform: scale(1.1);
}

/* Individual styles for buttons */
.home-buttoninrow1 {
  background-image: url("https://static.igem.wiki/teams/4647/wiki/home/newed.jpg");
  background-size: cover;
  width: 375px;
  border-radius: 50px;
}

.home-buttoninrow2 {
  background-image: url("https://static.igem.wiki/teams/4647/wiki/home/sustainable.jpg");
  background-size: cover;
  width: 375px;
  border-radius: 50px;
}

.home-buttoninrow3 {
  background-image: url("https://static.igem.wiki/teams/4647/wiki/home/model.jpg");
  background-size: cover;
  width: 375px;
  border-radius: 50px;
}




  









  
