@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}
.input-field {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  flex-direction: column;
}

img {
  height: 50%;
  width: 30%;
}
h1 {
  margin-top: 10px;
  font-size: 50px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  img {
    height: 50%;
    width: 60%;
  }
  h1 {
    margin-top: 10px;
    font-size: 40px;
    text-align: center;
  }
}
