*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.container{
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 10px, rgba(0, 0, 0, 0.22) 0px 5px 5px;
}
.ques{
    font-size: 20px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-family: sans-serif;
    margin-bottom: 10px;
}
.input{
    padding: 15px 4px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    background-color: rgba(0, 0, 0, 0.233);
}
.input:focus{
    outline: none;
}
.sec{
    margin: 10px 30px;
}
.count{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0px 32px;
}
.count-txt{
    font-size: 15px;
    font-family: sans-serif;
    font-weight: 500;
}
.count-txt-rem{
    font-size: 15px;
    font-family: sans-serif;
    padding-right: 10px;
}