@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section {
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, #219ebc, #023047);
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 40px;
    gap: 20px;
}

.heading {
    display: flex;
    align-items: center;
    color: #e9d8a6;
    font-family: "poppins";
}

.heading img {
    height: 50px;
}

section button{
    padding: 5px 10px;
    border-radius: 5px;
    border: none;
    background-color: #7209b7;
    color: white;
    font-size: 15px;
    font-weight: 500;
    font-family: "poppins";
    outline: none;
}

.notes-container{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input{
    position: relative;
    min-height: 150px;
    width: 100%;
    max-width: 500px;
    border-radius: 5px;
    outline: none;
    padding: 10px;
    color: #7209b7;
    font-size: 17px;
    background-color: white;
    font-family: "poppins"
}

.input img{
    position: absolute;
    bottom: 15px;
    right: 15px;
    cursor: pointer;
}
