*{
    padding: 0;
    margin: 0;
      font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body{
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container{
    background: #fff;
    padding: 30px;
    border: 15px;
    box-shadow: 0 5px 20px;
    text-align: center;
    width: 350px;
}

h1{
    font-size: 5rem;
    font-weight: 600;
    color: #b32d43;
    margin-bottom: 10px;
}
h2{
    font-size: 4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.input-box{
    margin-bottom: 20px;
}

input[type="date"]{
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-right: 10px;
}

button{
    background: #ff6600;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}
button:hover {
  background: #ff8533;
}

#result {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}