@font-face {
    font-family: 'pop';
    src: url(../fonts/Poppins/Poppins-Regular.ttf);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'pop';
    /* border: 1px solid black; */
}

body,html{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    overflow-x: hidden;
}
/* .container{
    max-width: 1100px !important;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    background-color: azure;
}
.row{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap !important;
    flex-shrink: 2;
    width: 100%;
    height: 400px;
} */
.row{
    justify-content: space-around;
    margin-bottom: 40px !important;
    margin-top: 40px !important; 
}
.budget-div{
    display: flex;
    justify-content: center !important;
    color: black;
    align-items: flex-start !important;
    flex-direction: column;
    flex-wrap: wrap;
    width: 40%;
    height: 370px;
    background-color: aliceblue;
    padding-left: 20px;
    padding-right: 20px;
}
.expenses{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
    background-color: aliceblue;
    height: 370px;
    width: 40%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}
input[type='text']{
    width: 100%;
    height: 50px;
    padding-left: 14px;
    font-size: 19px;
}
input[type='number']{
    width: 100%;
    height: 50px;
    padding-left: 14px;
    font-size: 19px;
}
input[type='text']::placeholder{
    font-size: 15px;
    font-weight: bold;
}
input[type='number']::placeholder{
    font-size: 15px;
    font-weight: bold;
}
.budget-div button{
    width: 130px;
    border: none;
    background-color: blueviolet;
    color: white;
    font-size: 16px;
    padding-left: 14px;
    padding-right: 15px;
    height: 60px;
    margin-top: 30px;
    cursor: pointer;
}
.budget-div input{
    margin-top: 20px;
}
.expenses input{
    margin-top: 20px;
}
.expenses button{
    width: 160px;
    cursor: pointer;
    height: 60px;
    border: none;
    background-color: blueviolet;
    color: white;
    font-size: 16px;
    padding-left: 14px;
    padding-right: 14px;
    margin-top: 30px;
}
.table{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    background-color: blueviolet;
    height: 140px;
    color: white;
}
.balance,.ExpensesDiv,.totalBudget{
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        flex-direction: column;
}
.expense-list{
    width: 100%;
    margin-top: 80px;
    margin-bottom: 100px;
}
.q1{
    width: 100% !important;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    border: 1px solid black;
    align-items: center;
    padding-top: 13px;
    padding-bottom: 5px;
}
.q2{
    width: 100% !important;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    /* border: 1px solid black; */
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
    background-color: white;
    box-shadow:  -15px 9px 10px -6px #8a2b62;
}
.bin{
    font-size: 16px;
    display: none !important;
}
.q2:hover{
    .bin{
        display: inline !important;
    }
}