body{
  background-color: #0093E9;
  background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
  font-family:'Roboto', sans-serif;
}
main{
  position: relative;
}
h2{
  font-size: 30px;
  font-weight: bold;
  text-align: left;
}
section{
  color: white;
  text-align: center;
}

button, input{
  background-color: inherit;
  color: white;
  margin: 0.5em;
  font-weight: 300;
  padding: 0.5em;
  font-family: 'Roboto', sans-serif;
  font-size: 1.5em;
  border: 1px solid white;
  border-radius: 0.2em;
  transition: 0.3s all;
}
button:hover, input:hover{
  background-color: white;
  color: black;
  cursor: pointer;
}
input::placeholder{
  color:white;
  opacity:0.7;
}
button:focus{
  outline: 0;
}
button:active{
  transform: translate(0, 4px);
}
input:focus{
  outline: 0;
  background-color: white;
  color: black;
}
hr{
  margin: 30px 0 30px 0;
  background: rgb(0,181,251);
  background: linear-gradient(180deg, rgba(0,181,251,1) 0%, rgba(161,229,255,1) 49%, rgba(0,181,251,1) 100%);
  border: 0px;
  height: 20px;
}
#milkmbtn{
  property:none;
}
input::-webkit-outer-spin-button,
      input::-webkit-inner-spin-button {
        display: none;
      }
