body {
    background-color: #3e2c20; 
    color: #f5e1c8; 
    font-family: 'Arial', sans-serif;
    text-align: center;
    padding: 20px;
    margin: 0;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    border-bottom: 1px solid gray;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.header-logo {
    text-decoration: none;
    color: black;
    font-size: 34px;
    font-weight: 700;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.header-nav {
    display: flex;
    gap: 40px;
    margin-left: auto;
    align-items: center;
}

.header-link {
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.photo{
  display: flex;
  max-width:100%;
  padding: 50px 0;
}
.image{
  width:100%;
  height:100%
}
.container{
max-width:1280px;
width:100%;
padding: 0 15px;
margin: auto;
}
.row{
  display: flex;
  flex-direction: space-between;
}
.form{
  display: flex;
  flex-direction: column;
  max-width:610px;
  width:100%;
  gap: 25px;
}
.form-input{
  display: block;
  width:100%;
  padding: 10px 12px;
  border: 2px solid grey;
  border-radius:2px;
  text-transform: uppercase;
  letter-spansing:2px;
  font-size: 14px;
  line-height:1.42;
  color: black;
}