.primary_btn{
    --color: #69563c;
    --color2: rgb(200, 218, 210);
    padding: 10px 20px;
    background-color: var(--color);
    border-radius: 6px;
    border: none;
    font-weight:400 ;
    transition: .5s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    font-size: 17px;
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    text-transform: uppercase;
    color: var(--color2);
}






body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
  }
  
  header,
  main,
  footer {
    padding: 20px;
  }
  
  
@media (max-width: 767px) {
  header  {
    padding: 0;
  }
}
  header {
    text-align: center;
  }
  
  h1 {
    font-size: 2em;
    margin-bottom: 10px;
  }
  
  p {
    font-size: 1.2em;
  }
  
  .contact-info {
    margin-bottom: 20px;
  }
  
  h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  label {
    font-weight: bold;
  }
  
  input,
  textarea {
    padding: 10px;
    border: 1px solid #ccc;
  }
  
  button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  button:hover {
    background-color: #3e8e41;
  }
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    z-index: 100;

    
}
.hero-content h1{
    color: #e8edeb;
    font-size: 45px !important;

}
button{
  border-radius: 20px;
  padding: 10px 50px ;
  background-color:#663514 ;
  font-size: 22px;
  
}
.button-outline{
  background-color: transparent;
  border:1px solid #663514 ;
  color: #663514;
}