body{
  padding: 0;
  margin: 0;
  height: 100vh;
  width: 100%;
  font-family: arial;
  font-size: 30px;
  background: linear-gradient(135deg, rgb(3, 200, 255),rgb(43, 0, 255));
  text-transform: capitalize;
}
.container{
  position: fixed;
  width: 500px;
  top: 10%;
  left: 10%;
}
h2{
  font-size: 60px;
}
.cal{
  color: rgb(255, 0, 0);
}
.input-section{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 20px;
  border-radius: 5px;
  background-color: rgba(250, 235, 215, 0.258);
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.9);
}
.input-section input{
  flex: 1;
  padding: 6px;
  font-size: 16px;
  border-radius: 5px;
  border: 0;
  outline: 0;
  cursor: pointer;
  position: relative;
}
.input-section input::-webkit-calendar-picker-indicator{
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  position: absolute;
  background-position: calc(100% - 10px);
  background-size: 25px;
  cursor: pointer;
}
.input-section button{
  margin-left: 20px;
  padding: 8px;
  border-radius: 5px;
  border: 0;
  outline: 0;
  font-family: sans-serif;
  cursor: pointer;
  color: white;
  background-color: rgb(142, 40, 237);
}
.input-section button:hover{
  box-shadow: 5px 5px 14px rgba(75, 2, 194, 0.8);
}
.input-section button:active{
  color: black;
  background-color: white;
  border: 1px;
}
.user-output{
  margin-top: 65px;
}
.contact-section{
  display: flex;
  padding: 10px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  justify-content: center;
  background-color: white;
}
.logos{
  margin:0px 30px;
  color: rgb(52, 4, 45);
}

@media (250px<width<600px) {
  h2{
    font-size: 30px;
  }
  .input-section{
    position: fixed;
    left: 10%;
    right: 10%;
  }
  .user-output{
    margin-top: 100px;
    position: fixed;
  }
  
}
