body {
    background-image: linear-gradient(rgba(99, 135, 235, 0.5), rgba(151, 81, 209, 0.5));
    background-repeat: no-repeat;
    font-family: Arial, sans-serif;

    margin-left: 10vw;
    padding: 0;
    box-sizing: border-box;
    height: 100vh;
    /* display: flex; */
    /* justify-content: ; */
    /* align-items: center */
    /* flex-direction: column; */
}

#note {
    width: 6vw;
    height: 9vh;


}

h1 {
    color: white;
    font-size: 2.5rem;
    margin-top: 10vh;
    /* font-size: 5vw; */
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

#create {
    background-color: #440cdf;
    color: white;
    font-size: 1.4rem;
    padding: 1vw 2.5vw;
    margin-left: 1vw;
    border: none;
    cursor: pointer;
    margin-top: 2vw;
    display: flex;
    align-items: center;
    border-radius: 50px;
    justify-content: center;
    /* border: 1px solid rgb(0, 0, 0); */
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);

}

#create img {
    width: 2vw;
    height: 2.5vh;
}

#form {
    width: 50vw;
    height: 30vh;
    margin-top: 3vw;
    margin-left: 1vw;
    display: flex;
    position: relative;
}

textarea {
    width: 50vw;
    height: 20vh;
    border-radius: 10px;
    border: none;
    padding: 1vw;
    font-size: 1.2rem;
    margin-top: 1vw;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
}

#delete {
    width: 5vw;
    /* padding: 20px; */
    height: 5.5vh;
    position: absolute;
    right: 60px;
    top: 25px;
    border-radius: 10px;
    cursor: pointer;
    /* background-color: #ff0000; */
    position: relative;
}

#delete img {
    width: 2.4vw;
    height: 5vh;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
}

h1 {
    display: flex;
    align-items: center;
    font-size: 40px;
}

#note {
    margin-right: 10px;
}

button {
    display: flex;
    align-items: center;
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 10px;
}

button img {
    margin-right: 5px;
}

#form {
    display: flex;
    flex-direction: column;
}

textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
}

#delete {
    background-color: #5900ff;
    position: absolute;

}

.note {
    background-color: white;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.note button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    body {
        margin-left: 0;
    }

    h1 {
        font-size: 77777777rem;
    }

    #create {
        font-size: 1rem;
        padding: 2vw 3vw;
    }
    #create img {
        width: 8vw;
        height: 4vh;
    }

    #form {
        width: 90vw;
        height: 40vh;
    }

    textarea {
        width: 90vw;
        height: 30vh;
        font-size: 1rem;
    }

    #delete {
        width: 18vw;
        height: 5vh;
        top: 20px;
        right: 6vw;
    }

    #delete img {
        width: 5vw;
        height: 4vh;
    }

    h1 {
        font-size: 1.6rem;
    }

    button {
        padding: 8px 12px;
    }

    textarea {
        padding: 8px;
    }

    .note {
        padding: 8px;
        height: 9vh;
    }
    .note button img{
        height: 6vh;
    }

    textarea {
        font-size: 14px;
        width: 90%;
    }

}