@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}
input {
  margin-bottom: 8px;
  height: 40px;
  width: 500px;
  border: 1px solid lightgray;
  outline: none;
  padding-left: 10px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
}

form {
  width: 50%;
  display: flex;
  flex-direction: column;
}

button {
  border: none;
  background-color: rgba(0, 0, 0, 0.753);
  color: white;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 50px;
}

#results {
  display: inline;
  color: red;
}

#result-text {
  display: inline;
  color: green;
}
.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(135, 206, 250, 0.198);
}
form {
  display: flex;
  align-items: center;
  justify-content: center;
}

.container img {
  width: 160px;
  margin-bottom: 5px;
}
.container h2 {
  margin-bottom: 5px;
}
small {
  margin-bottom: 5px;
}
@media (max-width: 662px) {
  .container {
    overflow: hidden;
  }

  form input {
    width: 80%;
    width: 335px;
  }
  input {
    width: 80%;
    width: 335px;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 5px;
  }
}
