* {
    margin: 0;
    padding: 0;
}

body{
    /* background-color: aqua;
    display: flex;
    justify-content: center;
    align-items: center; */
    height: 165vh;
    background-color: rgb(153, 153, 153);

}

#main {
    height:27vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(70, 95, 119);

}

.price {
    height: 12vh;
    width: 100vw;
    background-color: aqua;
    border-radius: 1rem 1rem .5rem .5rem;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.diesel {
    height: 10vh;
    width: 40vw;
    background-color: rgb(9, 80, 233);
    text-align: center;
    color: white;
    border-radius: .5rem;
    /* margin-left: 2rem; */
}

.diesel h3 {
    margin-top: .5rem;
}

.diesel span {
    font-size: 2rem;
    font-weight: bold;
}

.petrol h3 {
    margin-top: .5rem;
}

.petrol span {
    font-size: 2rem;
    font-weight: bold;
}

.petrol {
    height: 10vh;
    width: 40vw;
    background-color: rgb(173, 85, 52);
    text-align: center;
    border-radius: .5rem;
    color: white;
    margin-left: 2rem;
}

.totalization {
    background-color: rgb(68, 248, 227);
    height: 15vh;
    width: 100vw;
    position: fixed;
    top: 12.3vh;
    border-radius: .5rem .5rem .2rem .2rem;


}

.total-fuel {
    height: 9vh;
    width: 100vw;
    background-color: rgb(213, 213, 220);
    display: flex;
    justify-content: center;
    color: white;

}

.total-diesel {
    width: 50vw;
    text-align: center;
    border: 1px solid black;
    background-color: rgb(9, 80, 233);
    margin-left: .3rem;
    margin-right: .2rem;
    border-radius: .3rem;
}

.total-petrol {
    width: 50vw;
    text-align: center;
    border: 1px solid black;
    margin-left: .3rem;
    margin-right: .2rem;
    background-color: #ad5534;
    border-radius: .3rem;
}


.total-sell-amount {
    height: 6vh;
    width: 100vw;
    background-color: rgb(109, 49, 193);
    border-radius: .5rem;
    margin-top: .2rem;
}

.total-sell-amount h2 {
    padding-top: .3rem;
    text-align: center;
    font-size: 1.8rem;
    color: white;
}


.nozzel{
    height: 22vh;
    width: 100vw;
    border: 1px solid black;
    border-radius: .5rem;
    margin-top: .5rem;
    text-align: center;
    color: white;

}
.nozzel label {
    font-size: 1.2rem;

}
.nozzel input {
    margin-top: .5rem;
    height: 1.5rem;
    border: 1px solid black;
    border-radius: .3rem;
    text-align: center;
}
.nozzel span {
    font-size: larger;
    font-weight: 900;
    background-color: rgb(9, 28, 22);
    
}


.btn{
    display: flex;
    justify-content: center;
    align-items: center;
}


button{
    margin-top: 2rem;
    padding: .5rem 1.2rem;
    font-size: 1rem;
    border-radius: .5rem;
    font-weight: 600;

}
button:active{
    background-color: rgb(0, 128, 0);
    color: white;

}

body input{
    font-weight: bold;
}















