:root {
    --box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
      0 1px 2px rgba(0, 0, 0, 0.24);
}
  
* {
    box-sizing: border-box;
}
  
body {
    background: #ffdde1; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
}
  
.container {
    margin: 30px auto;
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.balance-box{
    width: 450px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;   
    padding: 30px;
}
.transition-box{
    width: 450px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;   
    padding: 30px;
}
  
h1 {
    letter-spacing: 1px;
    margin: 0;
}
  
h3 {
    border-bottom: 1px solid #bbb;
    padding-bottom: 10px;
}
  
h4 {
    margin: 0;
    text-transform: uppercase;
}
  
.inc-exp-container {
    background-color: #fff8f9;
    box-shadow: var(--box--shadow);
    padding: 20px;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
  
.inc-exp-container > div {
    flex: 1;
    text-align: center;
}
  
.inc-exp-container > div:first-of-type {
    border-right: 1px solid #dedede;
}
  
.money {
    font-size: 2;
    letter-spacing: 1px;
    margin: 5px 0;
}
.money-plus {
    color: #2ecc71;
}
  
.money-minus {
    color: #c0392b;
}
  
label {
    display: inline-block;
    margin: 10px 0;
}
  
input[type="text"],
input[type="number"] {
    border: 1px solid #dedede;
    border-radius: 2px;
    display: block;
    font-size: 16px;
    padding: 10px;
    width: 100%;
    background-color: #fff8f9;
}
  
.btn {
    cursor: pointer;
    background-color: transparent;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    color: rgb(78, 78, 78);
    border: 0;
    border-radius: 6px;
    display: block;
    font-size: 16px;
    margin: 10px 0 30px;
    padding: 10px;
    width: 100%;
    transition: all 0.3s ease-in;
}
.btn:hover{
    background-color: rgb(247, 179, 190);
}
  
.btn:focus,
.delete-btn:focus {
    outline: 0;
}
  
.list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 40px;
}
  
.list li {
    background-color: #fff8f9;
    box-shadow: var(--box--shadow);
    color: #333;
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 10px;
    margin: 10px 0;
}
  
.list li.plus {
    border-right: 5px solid #2ecc71;
}
  
.list li.minus {
    border-right: 5px solid #c0392b;
}
  
.delete-btn {
    cursor: pointer;
    background-color: #e74c3c;
    border: 0;
    color: #fcf7e7;
    font-size: 20px;
    line-height: 20px;
    padding: 2px 5px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-100%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
  
.list li:hover .delete-btn {
    opacity: 1;
}

span{
    font-size: 12px;
    color: #333333;
    padding-top: 3px;
}