@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    box-sizing: border-box;
    padding: 0;
    font-family: "Inter", sans-serif;
}
body{
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
}
p{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 17px;
}

.container{
    background-color: #fff;
    width: 90%;
    margin-top: 15vh;
    padding: 20px;
    border-radius: 15px;
    box-shadow:  1px 1px 7px gray;
}
.container h2{
    width: 100%;
    text-align: center;
    font-size: 2rem;
    margin-top: 0px;
}
input{
    margin: 8px 0px;
    border-radius: 5px;
    border: 1px solid gray;
    padding:0px 5px;
    font-size: 20px;

}
input:focus{
    border: 2px solid rgb(231, 197, 5);
}
input,button{
    width: 100%;
    height: 6vh;
    outline: none;
}
button{
    background: #4caf50;
    padding: 3px 0px;
    border: none;
    margin-top: 5px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: larger;
    cursor: pointer;

}
button:hover{
    background: #358a38;
}
.input p{
    margin: 1px 0px;
}

#total{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-weight: 600;
}
@media only screen and (min-width:1000px){
    .container{
        width: 60%;
    }
    
}