* {
  padding: 0;
  margin: 0;
}
body {
  font-family: "Calibri";
}
main {
  background-color: rgb(0, 81, 255);
  background-image: linear-gradient(-45deg, rgb(0, 81, 255), rgb(255, 0, 234));
  display: flex;
  height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}
.hasil {
  display: flex;
  width: 50%;
  justify-content: space-around;
  padding: 20px 0;
}
h2 {
  text-transform: uppercase;
  font-size: 2em;
}
.form {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.datepicker-input {
  height: 30px;
  margin: 0 10px;
  padding: 0px 5px;
  border: none;
  font-family: "Arial";
  text-transform: uppercase;
  font-weight: bold;
  background-color: rgb(53, 186, 135);
  color: white;
  border-radius: 4px;
}
.datepicker-input:focus {
  outline: none;
}
.datepicker-input::-webkit-calendar-picker-indicator {
  filter: invert(100%);
  cursor: pointer;
}
button {
  font-weight: bold;
  height: 30px;
  width: 70px;
  padding: 0 5px;
  margin: 0 10px;
  border: none;
  border-radius: 5px;
}
button:hover {
  cursor: pointer;
  background-color: rgb(213, 211, 211);
  transition: all 1s;
}
#pesan {
  color: rgb(255, 13, 5);
  font-style: italic;
}
footer {
  position: absolute;
  bottom: 0;
  padding-bottom: 20px;
  font-family: "Brush Script MT";
}
@media screen and (max-width: 992px) {
  .hasil {
    width: 70%;
  }
}
@media screen and (max-width: 576px) {
  h2 {
    font-size: 1em;
    text-align: center;
  }
  .hasil {
    width: 95%;
    align-items: center;
  }
  h1{
    font-size: 1em;
    }
  .form {
    flex-direction: column;
    justify-content: space-evenly;
    height: 70%;
    width: 100%;
  }
  .datepicker-input,
  button {
    border-radius: 10px;
    height: 50px;
  }
  .datepicker-input {
    width: 80%;
  }
  button {
    width: 83%;
  }
}
