* {
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
body {
    background-color: rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
}
.container1 {
    width:100%;
}
.container2 {
    width: 100%;
    height: 100%;
    position: relative;
}
.list {
    width: 100%;
    height: 100%;
}
h1 {
    color:white;
    text-align: center;
}
#color {
    width: 90px;
    height:50px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 5px;
    border-radius: 50px;
    background-color: white;
}
#color button {
    width:35px;
    height: 35px;  
    border: none; 
    border-radius: 50%;
    background-color: transparent;
    color:red;
    font-size: 30px;
    cursor: pointer;
}
#color input {
    width: 35px;
    height:35px;
    border: none;
    border-radius: 60%;
    background-color: transparent;
    cursor: pointer;
}
#input::-webkit-color-swatch-wrapper{
    padding: 0;
    }

    #color input::-webkit-color-swatch{
    border-radius: 50%;
    }
.note {
    position: absolute;
    width:300px;
    height:350px;
    background-color: gray;
    box-shadow: 2px 2px 5px black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.hd {
    width:100%;
    height:30px;
    background-color: transparent;
    border-radius: 10px 10px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 10px;
}
.note textarea {
    width:99%;
    height:99%;
    border-radius: 0px 0px 10px 10px;
    background-color: rgba(0,0,0,0.9);
    font-size: 15px;
    color:white;    
    border: none;
}

#close {
    cursor: pointer;
    color: white;
}
