* {
    margin:0;
    padding:0;
}

html, body {
    width:100%;
    height:100%;
    font-family: 'Quicksand', sans-serif;
    background: #EEEEEE;
}

#container {
    width:100%;
    height:100%;
}

header {
    background: #01B47C;
    color:white;
    text-align: center;
    padding:20px 0;
}

h1 {
    font-family: 'Lato', sans-serif;
}

#holder {
    width:100%;
    height:auto;
    min-height:200px;
}

.newDate {
    width:100%;
    height:50px;
    padding:15px 35px;
    box-sizing: border-box;
    color:white;
    background: #02A673;
    font-weight: bold;
    letter-spacing: 1px;
    font-size:16px;
}

.expenses {
    background: white;
    width:100%;
    height: auto;
    min-height: 80px;
    line-height: 80px;
    padding:0 30px;
    box-sizing: border-box;
    border-bottom:2px solid rgba(0,0,0,0.2);
}

.expenses p{ 
    display:inline-block;
}

.name { float:left }
.amount { float:right}

#form {
    width:90%;
    height:300px;
    background:#6747CD;
    position:fixed;
    bottom:0;
    border-radius: 10% 10% 0 0 ;
    left:5%;
    padding:30px;
    box-sizing: border-box;
}

#form input{
    outline: none;
    width:100%;
    height:50px;
    border-radius: 5px;
    border:none;
    padding:10px 30px;
    box-sizing:border-box;
    margin-bottom:20px;
}

#form button{
    outline: none;
    width:100%;
    height:50px;
    border-radius: 5px;
    border:none;
    padding:10px 30px;
    box-sizing:border-box;
    margin-bottom:20px;
    background:rgba(63,41,132,0.5);
    color:white;
}

