@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body, html {
  height: 100%;
font-family: "Public Sans", sans-serif;
   background-color: #013927;
  color: white;
}

.launch-text{
  margin: 30px 0  45px 0;
}

.launch-text h2 {
color: #FFF;
/* huge text */
font-family: "Public Sans", sans-serif;
font-size: 96px;
font-style: normal;
font-weight: 100;
line-height: 104px;
  margin-bottom: 30px;
}

.launch-text p {
  font-size: 24px;
  font-weight: 400;
line-height: 32px;
color: #FFF;
margin-bottom: 0;
}

.contact-btn {
  padding: 1rem 3rem;
  background-color: #262622;
  border: 2px solid #E6C260;
  color: #fff;
  font-weight: 400;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-btn:hover {
      border: 2px solid #E6C260;
  background-color: #fff;
  color: #262622;
  font-weight: bold;
}


/* Responsive Design */
@media screen and (max-width: 768px) {


  .left-section, .right-section {
    width: 100%;
  }
.logo{
  text-align: center;
}
.launch-text {
  text-align: center;
}
  .launch-text h2 {
    font-size: 5rem;
    line-height: normal;
  }
  .contact-section{
      text-align: center;
  }
  .contact-btn {
    width: 100%;

  }
}

/*Mobile Styles */
@media screen and (max-width: 767px) {
  .launch-text h2 {
    font-size: 3rem;
    line-height: normal;
  }
  .launch-text p {
    font-size: 16px;
    line-height: normal;
  }
.contact-btn{
  padding: 0.60rem 1rem;
  font-size: 14px;
}
}
