html {
  background: black;
  color: white;
  cursor: alias;
  font: bold 20px Helvetica, Arial, sans-serif;
  padding: 70px 40px;
  text-transform: lowercase;
}

#suggest {
  margin-top: 60px;
  color: #333;
  font-size: 12px;
}

input#suggestion {
  font-size: 18px;
  font-weight: bold;
  width: 500px;
  border: none;
  outline: none;
  padding: 5px 7px;
  margin-right: 4px;
}

input[type=submit], input[type=button] {
  border: solid 1px #bbb;
  border-radius: 3px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  padding: 4px 15px 5px;
  background-color: black;
  margin-right: 2px;
  position: relative;
  bottom: 1px;
  cursor: pointer;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  input#suggestion {
    width: 270px;
  }

  input[type=submit], input[type=button] {
    margin-top: 25px;
    padding: 4px 5px 5px;
  }
}

input[type=submit]:active, input[type=button]:active {
  border: solid 1px #ccc;
  background: #222;
}
