*{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   color:azure
}

h1{
   color: #b66f0d;
}

body {
   background-color: black;
}

header {
   display: flex;
   text-align: center;
   align-items: center;
   justify-content: space-around;
   margin: 20px 0;
}


form {
  width: 300px;
  display: flex;
  text-align: center;
  justify-content: center;
  position: absolute;
}

input, button {
  outline: none;
  background: transparent;
}

input {
  width: 100%;
  height: 42px;
  padding-left: 15px;
  border: 3px solid #b66f0d;
  border-radius: 20px;
}

button {
  border: none;
  height: 42px;
  width: 42px;
  cursor: pointer;
  position: relative;
  top:0;
  right: 80px;
}

.cross {
   font-size: 20px;
   color: rgb(147, 141, 134);
}

input:focus {
  border-color: hwb(39 13% 3%);
}

main{
   display: flex;
   align-items: center;
   text-align: center;
}

.images {
   border-top: 5px solid  #b66f0d;
   width: 100%;
   padding-top: 20px;
}

.images img {
  display:inline-block;
  margin: 5px;
  width: 400px;
  height: 267px;
}

footer{
   display: flex;
   justify-content: space-around;
   text-align: center;
   align-items: center;
   color: #F9F0DA;
   gap:350px;
}

p {
   display: block;
}

@media (max-width: 924px){
   input {
      width: 200px;
   }
}

@media (max-width: 768px){
   input {
      width: 100px;
   }
}