*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    height: 100vh;
   background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}
.container {
     width: 250px;
     height: 350px;
     background: rgba(255, 255, 255, 0.05);
     padding: 15px;
     border-radius: 10px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.733);    
}
.heading {
    margin-bottom: 10px;
    text-decoration:wavy underline;
    text-transform: capitalize;
    font-style: italic;
    color: #86f3c0;
    font-size: 1.4rem;

}
#inp {
    width: 100%;
    padding: 10px;
    display: block;
    font-size: 18px;
    text-align: right;
    margin-bottom: 20px;
    border: 1px solid #6e6d6d8d;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.501);
    border-radius: 5px;
}
button {
    width: 20%;
    padding: 7px;
    font-size: 18px;
    margin: 3.8px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(135deg, #1f4037, #99f2c8);
    color: #fff;
    cursor: pointer;
    margin-top: 8px;
    text-transform: capitalize;
   
}
button:hover {
    background: linear-gradient(135deg, #99f2c8, #1f4037);
    color: #000;
}

#clear_all {
    width: 50%;
    font-weight: 600;
    text-transform: capitalize;
    font-size: larger;}
#clear_all:hover {
    background: linear-gradient(135deg, #99f2c8, #1f4037);
    color: #e30404 !important;
}
.clear {
    font-weight: 600;
    text-transform: capitalize;
    font-size: larger;
}
.clear:hover {
    background: linear-gradient(135deg, #99f2c8, #1f4037);
    color: #ffd500 !important;
}

@media (max-width: 500px ) {
    body {
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }
    .container {
        width: 70%;
        height: auto;
         background: rgba(255, 255, 255, 0.05);
         padding: 15px;
         border-radius: 10px;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.733);
    }
    .heading {
        font-size: 1.5rem;
        margin-top: 0px;
    }
    
}