body{
    background-color: #121212;
}
h1{
    color: #fdfdfc;
    background-color: #252422;
    text-align: center;
    border: 2px solid black;
    border-radius: 1rem;
    box-shadow: 0 0 0.2rem #2d3142;
    padding-top: 5px;
}
input{
    color: black;
    background-color: lightgrey;
    border: 3px solid black;
    border-radius: 0.5rem; /* 8px */
    height: 30px;
    width: 250px;
    font-weight: bold;
}
button{
    color: white;
    background-color: #2b2d42;
    border: 2px solid black;
    border-radius: 0.5rem;
    height: 30px;
    cursor: pointer;
    font-weight: 500;
}
button:hover{
    background-color: #3c6e71;
}
.delete{
    margin-left: 0.7rem;
    margin-top: 0.5rem;
    padding: 2px 5px;
}
li{
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    width: fit-content;
    border: 1px solid #121212;
    margin: 10px;
}
div{
    position: absolute;
    left: 584px;
    top: 110px;
    border: 0.1px solid black;
    border-radius: 0.5rem;
    box-shadow: 0 0 0.7rem #001427;
    padding: 1.5rem;
    background-image: url(./images/background.jpg);
    background-size: cover;
}
#date{
    background-color: lightblue;
}