
body{
    display: flex;
    justify-content: center;
    align-items:center;
     height:70vh;
     background-color: rgb(227, 232, 233);
     font-family:  sans-serif;
}

.container{
 
    width: 700px;
    height: 300px;
    background-color:white;
    text-align: center;

    border-radius: 15px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding-bottom: 30px;

}

input[type="date"]{
    width: 60%;
    padding: 10px;
    border-color: rgb(20, 107, 49);
    border-radius: 8px;
    margin-bottom: 15px;
    color: black;
    font-size: 15px;
    font-weight: bold;
}

button{
    margin-bottom: 8px;
    background-color: #1ac980;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

button:hover{
  background-color: #42aa71;
  transform: scale(1.05);
}

h2{
    font-family: cursive;
    font-size: 19px;
}




h1{
    font-size: 35px;
}
