@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;600;800&display=swap');
body{
    background-color: #485460;
    font-family: 'Nunito', sans-serif;
}
.container{
    background-color: #d2dae2;
    height: 400px;
    width: 500px;
    margin: 1rem auto;
    padding: 1rem;
    border-radius: 20px;
    text-align: center;
}
input{
    font-family: 'Nunito', sans-serif;
    width: 200px;
    height: 20px;
    display: grid;
    margin: 1rem auto;
    padding: 0.5rem;
    border: none;
    border-radius: 10px;

}
#calculate-btn{
    background-color:#34495e ;
    
    border-radius: 30px;
    border: none;
    padding: 1rem;
    font-family:'Nunito', sans-serif; 
    font-weight: 600;
    margin: 0.5rem;
    color: #ffffff;
}
#result-div{
    font-weight: 800;
}

@media screen and (max-width:576px) {
    .container{
        max-width: 300px;
      
    }

}