*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  
  
}
h1{
  text-align: center;
  margin-top: 10%;
}
.an {
  text-decoration: none;
  padding: 10px;
  color: black;
 margin-left: 30%;

}

p{
  text-align: center;
  align-items: justify;
  margin-top: 10px;
  margin-left: 10%;
  width: 80%;

}
header{
  width: 100vw;
  min-height: 100vh;
  background: #f7f7f7;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  
}
.container{
  background:white;
min-height: 500px;
max-width:800px;
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.left{
  flex-basis: 50%;
}
.right{
  flex-basis: 50%;
}
form{
  padding: 1rem;
}
h3{
  margin-top: 1rem;
  color: #2c3e50;
}
form input[type="text"]{
  width: 100%;
  padding: 0.5rem 0.5rem;
  margin: 0.5rem 0;
  outline: none;
}
#zip{
  display: flex;
  margin-top: 0.5rem ;
  
}
#zip select{
  padding: 0.5rem 0.7rem;
}
#zip input[type="number"]{
  padding: 0.5rem 0.7rem;
  margin-left:5px;
}
/*input[type="submit"]*/
.submit{
  width: 100%;
  padding: 0.4rem 1.0rem;
  background: #34495e;
  color: white;
  border: none;
  outline: none;
  margin-top: 1rem;
 justify-content: center;
 align-items: center;
 text-align: center;
  cursor: pointer;
  
}
.submit a{
  color: white;
 
  font-size: 20px;


}
/*input[type="submit"]*/.submit:hover{
  background: #fb036d;
}
 a{
  list-style: none;
  text-decoration: none;
  color:#34495e;
 
  border: none;
  outline: none;
  
}

@media(max-width:991px){
  .container{
    flex-direction: column;
    width: 90%;
  }
  body{
    overflow-x: hidden;
  }
  form input[type="text"]{
    width: 100%;
  }
 
}

@media(max-width:400px){
  .container{
    flex-direction: column;
    width: 80%;
  }
  body{
    overflow-x: hidden;
    
  }
  form input[type="text"]{
    width: 90%;
  }
  #zip input[type="number"]{
   width: 90%;
  }
}