@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');

body {
    background: #fffdfd;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding:0;
}

#container {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin-top:20px;
}

.notepad-container {
    text-align: center;
    color: rgb(5, 5, 5);
    
}

textarea {
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
    width: 100%;
    max-width: 300px;
    height: 200px;
    margin-bottom: 20px;
    border: 2px solid rgb(8, 8, 8);
    background: #e9e8e6;
    border-radius: 5%;
}

textarea:hover {
    background-color: rgb(245, 239, 166);
    color: rgb(0, 0, 0);
}

button {
    padding: 10px;
    margin: 5px;
    cursor: pointer;
    border-radius: 10%;
}

.add-btn {
    background: rgb(122, 202, 125);
    color: #000;
    font-weight: bold;
}
.add-btn:hover{
    background: rgb(52, 176, 56);
    color: #fff;
    font-weight: bolder;
}

.delete-btn {
    background: rgb(223, 107, 107);
    color: #000;
    font-weight: bold;
}
.delete-btn:hover{
    background: rgb(226, 44, 44);
    color: #fff;
    font-weight: bolder;
}

.save-btn {
    background: rgb(109, 190, 244);
    color: #000;
    font-weight: bold;
}
.save-btn:hover{
    background: rgb(60, 168, 239);
    color: #fff;
    font-weight: bolder;
}
hr{
    border: 3px solid rgb(8, 8, 8);
    margin-top: 10px;
}
hr:hover{
    border: 3px solid rgb(54, 57, 10);
    margin-top: 10px;
}

#notesList {
    margin-top: 20px;
    width: 100%;
    background-color: rgb(245, 239, 166);
    font-size: 16px;
    font-weight: bold;
    border-radius: 0% 10%;
}
