@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap');

*, ::before, ::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Poppins', sans-serif;
    background-color: #7BDAF3;
    display: flex;
    flex-wrap: wrap;
	
}

.addNote{
    cursor: pointer;
    position: fixed;
    padding: 7px;
    background-color: #9EC862 ;
    border: none;
    border-radius: 7px;
    color: white ;
    top :5px;
    right : 5px;
}

.note{
    position: relative;
    padding-top: 50px;
}

.notes{
    position: relative;
    
    
    height: 400px;
    width: 400px;
    margin: 20px;
    box-shadow: 0px 0px 15px 5px  rgba(0, 0, 0,0.1);
    
}

.tools{
    position: relative;
    background-color: #9EC862 ;
    height: 30px;
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    
}

.tools button{
    cursor: pointer;
    background-color: transparent;
    border: none;
    color: #fff;
    padding: 0.8rem;
    font-size: 1rem;
}

.notes textarea{
    border: none;
	outline: none;
    font-family: inherit;
    width: 100%;
    height: 370px;
}

.notes .main {
    
    height: 370px;
    width: 100%;
    background-color: bisque;
}

.notes .hidden{
    display: none;
}

ul {
    list-style-position: inside;
}