@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

body {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

.container {
    width: 90%;
    max-width: 800px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    color: #333333;
    font-size: 28px;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 10px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.notes-container {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px 0 80px 0;
    margin-top: 20px;
    flex-wrap: wrap;
    overflow-y: auto;
}

.notes-container::-webkit-scrollbar {
    display: none;
}

.note {
    width: 160px;
    height: 160px;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 4px 10px rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease-in-out;
    font-size: 14px;
    margin: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}
.note:hover {
    transform: scale(1.05);
}

.note textarea {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    resize: 0;
    padding: 5px;
    font-size: 14px;
    font-family: inherit;
}

.delete-note{
    border: 0;
    outline: 0;
    cursor: pointer;
    background-color: red;
    color: white;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    position: fixed;
    top: 5px;
    right: 5px;
}

.add-note {
    height: 60px;
    width: 60px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease-in-out;
}

.add-note:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.6);
}


/* BSDinesh own*/
/*
*{
    font-family: "Poppins", sans-serif;
    letter-spacing: 1px;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background: linear-gradient(lightgreen, lightblue);
}
.container{
    height: 90vh;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 850px;
}
.notes-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    flex-wrap: wrap;
}
.note{
    height: 150px;
    width: 150px;
    border: 0;
    outline: 0;
    padding: 20px;
    margin: 20px 10px 20px 10px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.note textarea{
    height: 100%;
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
}
.delete-note{
    height: 25px;
    width: 25px;
    border-radius: 50%;
    border: 0;
    outline: 0;
    background-color: red;
    color: white;
    font-weight: bold;
    position: fixed;
    top: 5px;
    right: 5px;
    transition: all 0.2s ease-in-out;
}
.delete-note:hover{
    background-color: rgb(222, 0, 0);
}
.delete-note:active{
    transform: scale(1.1);
}
h1{
    font-weight: bold;
    background: linear-gradient(lightblue, rgb(227, 144, 238));
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
h1:hover{
     background: linear-gradient(rgb(230, 188, 173), rgb(153, 144, 238));
}

.add-note{
    height: 55px;
    width: 55px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 35px;
    border: 0;
    background: linear-gradient(rgb(255, 157, 121), rgb(20, 183, 220));
    color: white;
    position: fixed;
    bottom: 25px;
    right: 25px;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
    transition: all 0.2s ease-in-out;
    backdrop-filter: blur(10px); 
}
.add-note:active{
    transform: scale(1.1);
}
.add-note:hover{
    background: linear-gradient(rgb(252, 108, 56), rgb(60, 219, 255));
}
*/