*{
    margin: 0;
    padding: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    animation: fadeIn 2s ease-in-out 1s;
}
body{
    align-items: center;
    justify-content: center;
    display: block;
    background-color: rgb(40, 94, 116);
}
header{
    display: flex;
    background-color: blue;
    width: 100%;
    height: 70px;
}
body::-webkit-scrollbar{
    background-color: black;
}
#delete{
    margin-left: 80%;
}
h1{
    margin: 15px;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
li{
    background-color: rgb(9, 5, 121);
    color: white;
    list-style: none;
    padding: 15px;
    border-radius: 10px;
    width: 200px;
    margin-left: 30px;
    margin-top: 15px;
}
button{
    border-radius: 5px;
    border: none;
    padding: 10px;
    background-color: rgb(18, 52, 163);
    color: white;
    cursor: pointer;
}
button:active{
    background-color: rgb(17, 47, 145);
}
img{
    height: 80px;
    width:50px;
    margin-right: 10px;
}
.modal{
    width: 100vw;
    height: 100vh;
    background-color: black;
    display: flex;
    
    justify-content: center;
    align-items: center;
    position: fixed;
    display: none;
}
#modal-content{
    display: none;
    position: fixed;
    left: 420px;
    bottom: 200px;
    padding: 40px;
    background-color: white;
    border-radius: 30px;
    width: 200px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }
}