*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: linear-gradient(to right top, #d16ba5, #c777b9, #ba83ca, #aa8fd8, #9a9ae1, #8aa7ec, #79b3f4, #69bff8, #52cffe, #41dfff, #46eefa, #5ffbf1);
    background: url(./image/wall.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.container{
    position: relative;
    width: 400px;
    flex-direction: column;
    gap: 20px;
}
.container .box{
    position: relative;
    width: 400px;
    padding: 20px;
    margin: 10px;
    /* background-color: #fff;
    box-shadow: 15px 15px 15px rgba(0,0,0,0.1);
    border-radius: 16px; */
    background: rgba( 255, 255, 255, 0.1 );
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
backdrop-filter: blur( 1.5px );
-webkit-backdrop-filter: blur( 1.5px );
border-radius: 10px;
border: 1px solid rgba( 255, 255, 255, 0.18 );
}
.container .box h2{
    font-size: 2rem;
    font-weight: 800;
    color: #ffff;
    width: 100%;
    text-align: center;
    padding: 10px;
}
.container .box #grocery{
         position: relative;
         width: 100%;
         display: flex;
}
.container .box #grocery input{
    position: relative;
    width: 100%;
    padding: 10px;
    border: 1px solid #333;
    outline:none;
    font-size: 1.2rem;
  color: #ffb600;
}
.container .box #grocery input::placeholder { 
    color: #ffb600;
    font-weight: 700;
    letter-spacing: 1px;
  }
.container .box #grocery button{
    background: #ffb600;
    color: #ffff;
    min-width: 100px;
    font-weight: 700;
    border: 0.1px solid #ffb600;
    border-radius: 0 0 16px;
    cursor: pointer;
    outline: none;
    box-shadow: 0 2px 4px darkslategray;
    font-size: 1rem;
}
.container .box #grocery button:hover {
    /* background-color: #2d6f2f; */
    background:transparent;
  }
  .container .box #grocery button:active{
        box-shadow: 0 0 2px darkslategray;
        transform: translateY(2px);
    }
.container ol{
    position: relative;
    padding: 10px 20px 10px 40px;
    margin: 10px;
    width: 100%;
    min-height: 398px;
    border-radius: 16px;
    background:#e0e0e0 repeating-linear-gradient(transparent 0%, transparent 99%, #ffb600 99%, #5ffbf1 100%);
    background-size: 50px 50px;
    box-shadow: 15px 15px 15px rgba(0,0,0,0.1);
}
.container ol li{
    position: relative;
    font-size: 1.5rem;
    height: 50px;
    color: #ffb600;
}
.container ol li .remove {
    position: absolute;
    top: 5px;
    right: 0;
    width: 25px;
    height: 25px;
    background: url(./image/icons8-minus-94.png);
    background-size: cover;
    cursor: pointer;
}
.container ol li.done p{
    text-decoration: line-through;
    color: rgba(0,0,0,0.2);
}
.container ol li.done p:after{
    content: "";
    position: absolute;
    top: 5px;
    right: 35px;
    width: 25px;
    height: 25px;
    background: url(./image/icons8-checkmark-96.png);
    background-size: cover;
    cursor: pointer;
}
@media (min-width: 310px) and (max-width: 720px) {
    .container .box{
        width: 350px;
        position: relative;
        left: 10px;
    }
    .container ol{
        width: 350px;
        position: relative;
        left: 10px;
    }
}
  


