/* Home Page Block 1 */
#block_1 {
  /* background-color: aqua; */
  text-align: center;
  width: 600px;
  margin: auto;
  margin-top: 65px;
  font-family: sans-serif;
  font-size: 16px;
}

#block_1 > h1 {
  font-size: 48px;
  font-weight: 400;
}

#block_1 > h1 + h1 {
  margin-top: -33px;
}

#block_1 > p {
  font-size: 16px;
}

#block_1 > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: auto;
  margin-top: 40px;
  width: 480px;
  padding-bottom: 40px;
}

#block_1 input {
  width: 300px;
  height: 45px;
  border: 2px solid #f16631;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-left: 20px;
  color: grey;
}

#block_1 button {
  height: 51px;
  padding: 0px 20px;
  margin-left: 0px;
  background-color: #f16631;
  border: 0px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  font-weight: bold;
  color: white;
}
/* Medium Screen */
@media all and (min-width: 481px) and (max-width: 768px){
  #block_1{
    width: 500px;
  }
  #block_1 > div {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    width: 300px;
    gap: 20px;
  }
  #block_1 input{
    width: 200px;
  }
  #block_1 button {
     width: 100px;
     margin-left: 70px;
  }
}
/* Small Screen */
@media all and (min-width: 320px) and (max-width: 480px){
  #block_1{
    width: 300px;
  }
  #block_1 > div {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    width: 200px;
    gap: 20px;
  }
  #block_1 input{
    width: 200px;
  }
  #block_1 button {
     width: 100px;
     margin-left: 70px;
  }
}