@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#header{
    position: fixed;
    display: flex;
    flex-direction: row;
    position: absolute;
    background: #1a1a1a;
    width: 100%;
    height: 8vh;
    align-content: center;
    z-index: 10;
    justify-content: space-between;
    align-items: center;
}
#header p{
    margin: 1vw;
    font-size: 3vw;
    margin: 1vw 1vw 1vw 3vw;
    color: #f2ac20;
    font-family: 'Pacifico', cursive;
    transition: 0.3s;
}
#header span{
    font-size: 3vw;
    color: #4265d6;
    transition: 0.3s;
    font-family: 'Pacifico', cursive;
    cursor: pointer;
    margin: 0 3vw 1vw 1vw;
}
#header span:hover{
    color: #3fc495;
}
#main{
    position: fixed;
    top: 8vh;
    background: rgb(32, 32, 32);
    width: 100%;
    height: 100%;
    display: grid;
    justify-items: center;
    align-content: flex-start;
    overflow-y: scroll;
    padding-bottom: 80px;
}
#main .note{
    position: relative;
    top: 0;
    margin: 0.5vw 0 0.5vw 0;
    width: 70vw;
    height: 6vh;
    background: white;
    border-radius: 5px;
    padding: 1vh;
    overflow: hidden;
    z-index:10 ;
    transition: 0.5s ease-in;
    font-family: 'Ubuntu', sans-serif;
}
#main .note #note-title{
    position: absolute;
    top: 0;
    width: 59vw;
    height: 4vh;
    margin: 1vh; 
    outline: none;
    padding: 0.3vw;
    border: none;   
    font-size: 18px;  
    transition: 0.5s; 
    color: black;
}
#main .note #note-content{
    position: absolute;
    top: 6.5vh;
    left: 0vw;
    width: 70vw;
    height: 22vh;
    outline: none;
    border: none;
    padding: 15px;
    font-size: 13px;
    font-weight: 500;
    overflow-y: scroll;
    transition: 0.5s; 
    color: black;
}
#main .note .fa-trash-can{
    position: absolute;
    top: 1vh;
    left: 64vw;
    margin: 1vh;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#main .note .fa-ellipsis-vertical{
    position: absolute;
    top: 1vh;
    left: 67vw;
    font-size: 18px;
    margin: 1vh;
}
#main .note .fa-trash-can:hover{
    color: #ec2c0f;
}

#main .note .more-div{
    position: absolute;
    top: 3vh;
    left: 58vw;
    padding: 8px;
    width: auto;
    height: auto;
    background: white;
    z-index: 15;
    border-radius: 4px;
    box-shadow: 5px 10px 50px rgb(139, 138, 138);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#main .note .more-div button{
    outline: 0;
    border: 0;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}
#main .note .more-div button input[type=color]{
    border: 0;
    outline: none;
    background: transparent;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
/* #main .note .more-div button span{ */
    /* position: relative; */
    /* width: 10px;
    height: 10px;
    border: 0px;
    border-radius: 50%;
    overflow: hidden;
} */
#main h3{
    position: absolute;
    top: 2.5vh;
    left: 20vw;
    font-size: 3vw;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    display: none;
}
::-webkit-scrollbar-thumb {
    background: #eff4f7; 
  }
::-webkit-scrollbar-thumb:hover {
    background: #0097DE; 
}
@media only screen and (max-width: 600px) {
    #header p{
        font-size: 5vw;
    }
    #header span{
        font-size: 6vw;
    }
    #main .note .fa-trash-can{
        left: 62vw;
    }
  }