@import url("https://fonts.googleapis.com/css2?family=Notable&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  width: 100%;
}

#main {
  width: 100%;
  height: 100%;
  background-color: #f0d8b1;
  position: relative;
}

#nav {
  width: 100%;
  height: 100px;
  box-shadow: 0px 5px 15px #e4cca6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 55;
}

#nav h2 {
  font-size: 3vw;
  font-weight: bold;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  padding-left: 7vw;
}

#nav-2 {
  display: flex;
  align-items: center;
  gap: 3vw;
  padding-right: 2rem;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

#nav-2 h4 {
  font-size: 2vmin;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

#nav-2 h4::after{
  background-color: green;
  content: '';
  position: absolute;
  width: 0%;
  height: 10%;
  left: 0;
  bottom: -3px;
  transform-origin: left;
  transition: all 0.4s ease;
}

#nav-2 h4:hover::after{
  width: 100%;
}

#nav-2 i {
  font-weight: bolder;
  display: none;
}

.content {
  width: 100%;
  height: calc(100% - 100px);
  display: flex;
  position: relative;
  align-items: center;
}

.left {
  width: 50%;
  height: 100%;
  font-family: "Notable", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5vw;
  padding: 15vh 7vw;
}

span{
  color: green;
  text-shadow: 3px 3px 0px rgb(0, 59, 0);
}

p{
  margin-top: 10px;
}

.right {
  width: 50%;
  height: 100%;
  background-image: url(Main-Image.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 1/1;
}

#Explore{
  background-color: green;
  color: #fff;
  border: none;
  margin-top: 20px;
  padding: 15px 40px;
  font-size: 2vw;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  scale: 1;
  transition: all 0.2s ease;
}

#sign-in{
  background-color: green;
  color: #fff;
  border: none;
  padding: 15px 40px;
  font-size: 2vw;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  scale: 0.7;
  transition: all 0.2s ease;
}

#Explore:hover{
  background-color: darkgreen;
  box-shadow: 5px 5px 0px green;
}

#Explore:active{
  scale: 0.9;
  box-shadow: 0px 0px;
}

#sign-in:hover{
  background-color: darkgreen;
  box-shadow: 5px 5px green;
}

#sign-in:active{
  scale: 0.6;
  box-shadow: 0px 0px;
}


/* responsive code */

@media (max-width: 600px) {
  #nav {
  }
  #nav-2 {
    padding: 0 1rem;
  }
  #nav-2 button{
    display: none;
  }
  #nav h2 {
    font-size: 6vw;
    color: white;
  }
  #nav-2 h4 {
    display: none;
  }
  #nav-2 i {
    display: block;
    color: white;
    font-size: 2rem;
    padding-right: 1rem;
    transition: all 0.3s ease;
  }
  #nav-2 i:hover{
    color: green;
  }
  .content{
    flex-direction: column;
  }
  .left{
    width: 100%;
    height: 40%;
    padding: 5vh 5vw;
    font-size: 4vw;
  }
  #Explore{
    padding: 15px 30px;
  }
  .right{
    width: 100%;
  }
}
