body{
    background-color: #f7f4ed;
    overflow-x: hidden;
    padding-bottom: 50px;
}


h1 {
    font-family: 'homemade apple';
    text-align: center;
    color:#0b1957;
}

ul{
    font-family:'red hat text';
    left: 0px;
    height: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.active { 
    background-color:rgb(205, 81, 101)
}

.footer{
    font-family:'homemade apple';
    background-color:#f7f4ed ;
}

.contact-section {
    width: 100%;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 3rem;
    background-color: #e9f3ff;
    border-radius: 20px;
    padding-bottom: 50px;

  }
  
  .contact-intro > * + * {
    margin-top: 1rem;
  }
  
  .contact-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: #0b1957;
  }
  
  .contact-description {
    color: #0b1957;
  }
  
  .form-group-container {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-label {
    margin-bottom: 0.5rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.5rem;
    border: none;
    display: flex;
    height: 2.5rem;
    width: 100%;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  
  .form-input::placeholder,
  .form-textarea:focus-visible {
    color: #6b7280;
  }
  
  .form-input:focus-visible,
  .form-textarea:focus-visible {
    outline: 2px solid #0b1957;
    outline-offset: 2px;
  }
  
  .form-textarea {
    min-height: 120px;
  }
  
  .form-submit {
    width: 102%;
    margin-top: 1.2rem;
    background-color: #e8d9ed;
    color: #0b1957;
    padding: 13px 5px;
    border-radius: 0.375rem;
    border:none;
  }

 .form-submit:hover {
    background-color: #d2b3db;
  }