.yourPlans, .container {
    display: flex;
    justify-content: center;
}

h1 {
    font-size: 60px;
    background: linear-gradient(to top left, #425F57, #c282eb);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.inputField {
    padding: 15px;
    width: 40%;
    border: none;
}
.btn {
    padding: 25px;
    background: #d5b0ed;
    border: none;
    font-size: larger;
}
body {
    background-image: url(list.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    background-position: center;
    background-color: #c18566;
}

.liItem {
    background: #E1CEB5;
    list-style-type: none;
    padding: 20px;
    width: 50%;
    text-align: center;
    color: #fff;
    font-size: 20px;
    border-bottom: 1px solid #cdc7be;
}
.ulList {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.clickColor {
    background:#6d6a89;
    color: #3C2317;
    font-weight:bolder;
    text-decoration: line-through;
    transition: all 3s ease;
}


@media all and (max-width:800px) {
    h1 {
        font-size: 40px;
    }
}

@media all and (max-width:500px) {
    h1 {
        font-size: 20px;
    }
    .inputField, .liItem  {
        padding: 7px;
        font-size: 12px;
    }
    .btn {
        padding: 10px;
    }
}