@import url("https://fonts.googleapis.com/css2?family=Baloo+Paaji+2:wght@600&display=swap");
*{
    margin: 0;
    padding: 0;
}
body{
    background-color: #cee3fb;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
/* h1{
    text-align: center;
    text-decoration: underline;
    margin-top: 50px;
    font-family: "Baloo Paaji 2", cursive;
} */
.container{
    width:320px;
    border-radius: 10px;
    background-color: #2e3951;
}
.input{
    background-color: #212b41;
    /* width: inherit; */
    height: 70px;
    padding:10px 15px;
    padding-top: 2px;
    border-radius: 10px;
}
.input input{
    height: 50px;
    width: 280px;
    border-radius: 5px;
    background-color: inherit;
    border: none;
    color: #ffffff;
    font-size: 35px;
    text-align: right;
    padding:0 5px;
    outline: none;
}
.button{
    background-color: #2e3951;
    border-radius: 15px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.btn{
    padding: 15px;
    border-radius: 5px;
    margin: 8px;
    width: 55px;
    font-size: 20px;
    /* font-style: italic; */
    border: none;
    background-color: inherit;
    color: aliceblue;
    transition: 0.5s ease;
    cursor: pointer;
}
.btn:hover{
    background-color: #2e3951;

}
.btn1{
    padding: 15px;
    border-radius:15px;
    border: none;
    margin: 5px;
    width: 135px;
    font-size: 20px;
    background-color: #8ddac4;
    transition: 0.3s ease;
    cursor: pointer;
}
.btn1:hover{
    background-color: #77b295;
}
.special{
    background-color: #212b41;
    border-radius: 50%;
    color: #5adcb8;
}
.img{
    margin-top: 5px;
    width: 20px;
}
.dark{
    border: none;
    width: 20px;
    margin: 2px;
    margin-left: 227px;
}
.small{
    font-size: 25px;
    padding: 12px 10px;
}
.color{
    display: flex;
    align-items: center;
    height: 22px;
}
.red{
    background-color: red;
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
   margin:2px 2px;
}
.yellow{
    background-color: yellow;
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    margin:2px 2px;
}
.green{
    background-color: #18ca99;
    width: 10px;
    height: 10px;
    border: none;
    margin:2px 2px;
    border-radius: 50%;
}
.size{
    width: 21px;
}
.center{
    display: flex;
    align-items: center;
    justify-content: center;
    display: inline;
}
.sm{
    width: 6px;
    filter: invert(1);
}
.divide{
    width: 22px;
} 