body{
    font-family:Arial,sans-serif;
    background-color: rgb(239, 225, 225);
    display: flex;
    flex-flow:column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  
}

form{
    margin-bottom:20px;
}
label{
    font-weight:bold;
}
input[type="date"]{
    padding:5px;
    font-size: 14px;
}
button[type="submit"]{
    padding: 5px 10px;
    background-color: #333;
    color:#fff;
    border:none;
    cursor:pointer;
}
section{
    
    background-color: #000;
    padding: 20px;
    border:1px solid #ccc;
    text-align: start;
    color:#fff;
    width:100vw;
}
section img{
    max-width:100%;
    width: 100%;
    height:70vh;
    

}
section h1{
    font-size: 1.8 rem;
    font-weight:900;
}
ul{
    list-style-type: none;
    padding:0;
}
li{
    margin-bottom:5px;
}
div{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    font-size: small;
    
}

