* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 100%;
    min-height: 100vh;
    /* background: linear-gradient(to top,rgb(102, 215, 249),rgb(255, 255, 255)); */
    /* background: linear-gradient(to top, #007cf0, #00dfd8); */
    /* background: linear-gradient(to top, #ff6a00, #ffd500, #87ceeb); */
    /* background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%); */
    background:
        linear-gradient(to top, rgba(135, 206, 235, 0.7), rgba(255, 255, 255, 0.3)),
        url('sky1.jpg');
    background-size: cover;
    background-repeat: no-repeat;




    color: #fff;
    padding-top: 4%;
    padding-left: 10%;

}

h1 {
    display: flex;
    align-items: center;
    font-size: 35px;
    font-weight: 600;
    color: rgb(123, 122, 123);
    cursor: none;

}

h1 img {
    width: 60px;
    transition: all .6s ease-in-out;
}

h1 img:hover {
    transform: rotate(360deg) scale(1.2);
}

button img {
    width: 25px;
    margin-right: 8px;
    transition: transform .6s ease-in-out;
}

button img:hover {
    transform: rotate(360deg) scale(1.3);

}

button {
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(to right, rgb(213, 255, 5), rgb(137, 242, 137));
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 18px;
    outline: none;
    border: none;
    margin: 30px 0 20px;
    box-shadow: 2px 2px 2px 2px white;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

button:hover {
    transform: scale(1.1);
    box-shadow: inset 2px 2px 2px 2px rgb(0, 183, 255);
}

button:active {
    animation: flash 0.3s ease-in-out;
}

@keyframes flash {
    0% {
        box-shadow: 0 0 0px white;
        background-color: initial;
        filter: brightness(1);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 20px white;
        background-color: #fff;
        color: black;
        filter: brightness(2);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 0px white;
        background-color: initial;
        filter: brightness(1);
        transform: scale(1);
    }
}

.notes-content {
    display: none;
    position: relative;
    margin-bottom: 20px;
    max-width: 500px;
    animation: fadeInUp 0.5s ease-in;

}
@keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

.input-area {
    /* position: relative; */
    width: 100%;
    max-width: 500px;
    min-width: 150px;
    background-color: #fff;
    color: #333;
    padding: 20px;
    padding-bottom: 50px; 
    padding-right: 50px;   
    margin: 20px 0;
    outline: none;
    border-radius: 5px;
    min-height: 100px;
    cursor: text;
}

.notes-content img {
    position: absolute;
    width: 25px;
    bottom: 15px;
    right: 15px;
    cursor: pointer;
    z-index: 10;
}