h3 {
  font-family: "Playfair Display", serif;
  text-align: center;
  margin-top: -150px;
}

.body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  margin: 0;
}

.box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

input[type="text"] {
  padding: 6px;
  border-radius: 10px;
  border: 0;
  background-color: rgba(168, 168, 168, 0.418);
}

input[type="submit"] {
  padding: 6px;
  border-radius: 10px;
  border: 0;
  background-color: #b3a184;
  margin-left: 0.6em;
  font-family: "Playfair Display", serif;
  cursor: pointer;
  font-weight: 600;
}

@media screen and (max-width: 1000px) {
  .box {
    width: 60vw;
  }

  h3 {
    font-size: 3em;
  }

  form {
    width: 90%;
    text-align: center;
  }

  input[type="text"] {
    padding: 1.2em;
    width: 50%;
  }

  input[type="submit"] {
    padding: 1.25em;
    width: 15%;
  }
}
