@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: Poppins, serif;
    box-sizing: border-box;
}

body{
    display: flex;
    background: rgb(206, 240, 252);

}
.container{
    margin: 40px auto;
    padding: 30px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    background-color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    max-width:90%;
}
h1{
    text-align: center;
}
input{
    width: 100px;
    object-fit: cover;
    height: 100px;
    margin: 20px auto;
    border: none;
    /* border-radius: 50%; */
}

#value{
    text-align: center;
    margin: 10px 0 40px 0px;
    font-size: 20px;
}
button{
    padding: 10px;
    width: 120px;
    background-color: rgb(60, 60, 255);
    color: white;
    border: none;
    border-radius: 50px;
    margin: auto;
    cursor: pointer;
    gap: 30px;

}
button:active{
    background-color: rgb(48, 48, 212);
}

.btn{
    margin: auto;
}