*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "dm-sans", sans-serif;
}

body {
    background-color: bisque;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    
    
}
header {
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 20px;
       border-bottom: 1px solid brown;
}
.navbar {
  height: 20%;

}
  nav ul {
       display: flex;
       list-style: none;
       gap: 20px;
       padding: 0;
       margin: 0;
}

  nav a {
  text-decoration: none;
  color: brown;
  }

.contact-container {
    background-color: beige;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    padding: 32px;
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: brown;
font-size: 32px;
}

.form-group {
    margin-bottom: 20px;
}

input, textarea{
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    background-color: beige;
}

input:focus, textarea:focus {
    border: brown;
    box-shadow: 0 0 5px rgba(5, 10, 10, 0.5);
outline: none;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

button {
    display: block;
    margin:auto;
    padding: 12px 16px;
    background-color: brown;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

    button:hover {
    background-color: #5a2c2c;
    }

    
footer {
  padding: 30px;
  text-align: center;
  color: brown;
    border-top: 1px solid #ddd;
}