@import url('https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&display=swap');

html{
    font-family: 'Kdam Thmor Pro', sans-serif;
}
body{
    background-image: url("red.jpg");
    background-repeat: no-repeat;
    
}

section{
    position: relative;
    height: 90vh;
}

.container{
    background-color: rgba(43, 43, 43, 0.233);
    height: 420px;
    width: 300px;
    color: #ffff;

    border-radius: 2%;

    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

.card-header{
    background-color: #151f3a;
    height: 80px;
    color: #ffff;

    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 22px;
}

.card-body{
    display: flex;
    justify-content: center;
    align-items: center;

    color: #fabdaa;
    font-size: 40px;
    height: 210px;
}

.card-footer{
    background-color: transparent;

    /* height: 60px; */
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.decrement-btn{
    background-color: #2c4072;
    border-radius: 10%;

    font-size: 20px;
    
    color: rgb(231, 231, 231);
    border: none;
    height: 40px;
    width: 40px;
}

.increment-btn{
    background-color: #2c4072;
    border-radius: 10%;

    font-size: 20px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    
    color: rgb(231, 231, 231);
    border: none;
    height: 40px;
    width: 40px;
}

.saveContainer{
    display: flex;
    justify-content: center;
    align-items: center;

    padding-top: 15px;
}

.save-btn{
    background-color: #c04071;
    color: #fef8f4;

    width: 53%;
    height: 30px;
    border: none;
    border-radius: 5px;
    font-style: Bold;
}

