body{
background-color: rgb(96, 188, 225);
    

}
#addToListInput{
    border: none;
    border-radius: 10px;
    width: 100%;
    resize: none;
    font-weight: bold;
    font-size: 30px;
    margin-right: 5px;
    max-width: 500px;
    padding: 10px;

    
}
.inputDiv{
align-items: center;
justify-content: center;
width: 100%;
display: flex;
margin-bottom: 10px;
}
#done{
    color: rgb(96, 188, 225);
    padding: 10px;
    font-weight: bold;
    border: none;
    border-radius: 3px;
    font-family: 'Times New Roman', Times, serif;
    background-color: black;

}


#addToList{
    border-radius: 50px;
    background-color: black;
    position: fixed;
    border: none;
    color: rgb(96, 188, 225);
    bottom: 50px;
    font-size: 40px;
    padding: 10px 20px;
    right: 50px;
}
#deleteConfirmationDiv{
    display: none;
            height: 50vh;
place-items: center;
    justify-content: center;
    align-items: center;
}


#deleteConfirmation{
    display: grid;
    justify-content: center;
        align-items: center;
place-items: center;

 width:400px;
 height: 200px;
    background-color: white;
}
#yesNoButtonDiv{
display: flex;
justify-content: center;
place-items: center;

}

#yesDelete{
    color: white;
    padding: 10px 30px;
    font-weight: bold;
    margin-right: 8px;
    border: none;
    border-radius: 3px;
    font-family: 'Times New Roman', Times, serif;
    background-color: red;
}
#noDelete{
    color: rgb(96, 188, 225);
    padding: 10px 30px;
    margin-left: 8px;
    font-weight: bold;
    border: none;
    border-radius: 3px;
    font-family: 'Times New Roman', Times, serif;
    background-color: black;
}