body {
    background: rgb(0, 187, 255);
    font-family: monospace;
    min-height: 100vh;
}

.app {
    width: 600px;
    margin: auto;
    padding-top: 50px;
    color: rgb(0, 0, 0);
}

.input-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgb(0, 0, 0);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 0px 0px 10px 0px;
}

.to-do-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: rgba(255, 0, 0, 0.75);
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0px 2px 4px 0px rgba(255, 0, 0, 0.75);
}

.input-controller {
    display: flex;
    gap: 10px;
}

.input-controller textarea {
    width: 100%;
    outline: none;
    border: none;
    resize: none;
    line-height: 1.4;
    color: white;
    border-radius: 10px;
    background-color: transparent;
    font-size: 1.2rem;
    font-family: inherit;
    transition: all 0.30s ease-in-out;
}

.edit-controller {
    display: flex;
    gap: 5px;
}

.update-controller {
    display: none;
}

@media(max-width: 768px) {
    .app {
        width: 95%;
        text-align: center;
    }

    .input-header {
        flex-direction: column;
        padding-bottom: 20px;
    }

    .to-do-input {
        display: flex;
    }

    .to-do-input input {
        width: 300px;
    }

}