* {
    font-family: sans-serif;
}

body {
    background-color: #ede0d4;
}
.container {
    margin: 15px 0px 0px 310px;
    box-shadow: 0px 0px 60px #faf3dd;
    width: 700px;
    min-height: 500px;
    border-radius: 8px;
}

/* Box1 Two Border Styles */

.box1 {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

/* Set Budget Border Styles */

.budget-border1 {
    box-shadow: 3px 4px 8px #777;
    height: 230px;
    width: 290px;
    background-color: #fff;
    border-radius: 6px;
}

.budget-name {
    font-size: 21px;
    margin-left: 10px;
}

#total-amount {
    font-size: 21px;
    margin: -12px 0px 0px 10px;
    height: 35px;
    border-radius: 7px;
    width: 265px;
}

#budget-button {
    height: 46px;
    font-size: 22px;
    margin: 10px;
    background-color: #8a817c;
    color: #fff;
    border-radius: 8px;
    width: 160px;
}

/* Check Border Styles */

.budget-border2 {
    box-shadow: -3px 4px 7px #777;
    height: 230px;
    width: 320px;
    background-color: #fff;
    border-radius: 6px;
}

.expence-name {
    font-size: 20px;
    margin: -15px 0px 0px 10px;
}

#description {
    font-size: 23px;
    margin: -14px 0px 0px 10px;
    height: 35px;
    border-radius: 7px;
    width: 295px;
}

#input-amount {
    font-size: 23px;
    margin: 3px 0px 0px 10px;
    height: 35px;
    border-radius: 7px;
    width: 295px;
}

#input-date {
    font-size: 30px;
    margin: 3px 0px 0px 10px;
    height: 39px;
    border-radius: 7px;
    width: 295px;
}

#check-button {
    height: 38px;
    font-size: 27px;
    margin: 10px;
    background-color: #8a817c;
    color: #fff;
    border-radius: 7px;
    width: 125px;
}

/* box2 Two Border Styles */

.box2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

/* Total , Expence and Balance Border Styles */

.budget-border3 {
    box-shadow: 0px 0px 10px #777;
    height: 113px;
    display: flex;
    width: 680px;
    justify-content: space-between;
    background-color: #8a817c;
    color: #fff;
    border-radius: 6px;
}

.budget-border3 p {
    padding: 10px 60px 0px 24px;
    font-weight: 700;
}

.budget-border3 span {
    display: block;
    text-align: center;
    font-weight: 100;
    padding-right: 40px;
}

/* Expence List Border Styles */

.budget-border4 {
    background-color: #fff;
    padding-left: 10px;
    margin-top: 10px;
    box-shadow: 0px 0px 5px #777;
    width: 671px;
    border-radius: 6px;
}

#add-expence-list {
    text-transform: capitalize;
}

.name {
    min-width: 80px;
    max-width: 80px;
    font-style: oblique;
}

.amount {
    min-width: 55px;
    max-width: 55px;
    text-align: center;
}

.row {
    width: 660px;
    border-radius: 15px;
}

.column {
    padding: 0px 10px 0px 10px;
    background-color: #f0efeb;
    box-shadow: 4px 4px 0px #777;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 640px;
    border-radius: 10px;

}

.icons i {
    padding-left: 13px;

}

.icons .icon-2:hover {
    color: red;
    cursor: pointer;
}

.icons .icon-1:hover {
    color: blue;
    cursor: pointer;
}