*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
    
    background-color: whitesmoke;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 100;
    font-size: 16px;
    
}

.container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  
}
#heading-container {
    width: 400px;
    color: white;
    height: 75px;
    text-align: center;
    padding-top: 10px;
    background-color: rgb(5, 37, 75);
}

h1{
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 100;
    margin-top: 1rem; 
}

p { 
    width: 400px;
    background-color: rgb(5, 37, 75);
    color: white;
    padding-left: 30px;
    padding-bottom: 10px;
    
}


#img-container {
    width: 400px;
    background-color: whitesmoke;
    position: relative;
    
}



#bal-output {
    height: 25px;
    width: 150px;
    color: white;
    margin-left: 40px;
    margin-top: -220px;
    position: absolute;
    
}
#clear-btn-container{
    display: flex;
    flex-wrap:wrap;
    justify-content: center;
    width: 400px;
    height: 60px;
    background-color: rgb(5, 37, 75);
    gap: 0.5rem;   
}
.btn {
    margin-top: 1rem;
    margin-bottom: 1rem;
    width: 120px;
    height: 30px;
    border: solid;
    border-width: 1px;
    color: whitesmoke;
    border-color: whitesmoke;
    background-color: transparent;
    border-radius: 5px;
}
.btn:hover{
    background-color: whitesmoke;
    color: rgb(5, 37, 75);
}

#button-container{
    display: flex;
    flex-wrap:wrap;
    justify-content: center;
    background-color: whitesmoke;
    border: solid;
    border-width: 18px;
    border-color: whitesmoke;
    min-width: 0px;
    height: 170px;
    gap: 0.5rem;
    margin-bottom: -20px;
    
    
}

#button1{
    width: 85px;
    height: 65px;
    background-color: rgb(71, 71, 71);
    box-shadow: 5px 10px 10px grey;
    color: white;
    border: none;
    border-radius: 10px;
}
#button1:hover{
    background-color: green;
}

#button2{
    width: 85px;
    height: 65px;
    background-color: rgb(71,71,71);
    box-shadow: 5px 10px 10px grey;
    color: white;
    border: none;
    border-radius: 10px;
}
#button2:hover{
    background-color: rgb(136, 31, 4);
}

#button3{
    width: 85px;
    height: 65px;
    background-color: rgb(71,71,71);
    box-shadow: 5px 10px 10px grey;
    color: white;
    border: none;
    border-radius: 10px;
}
#button3:hover{
    background-color: red;
}

#button4{
    width: 85px;
    height: 65px;
    background-color: rgb(71,71,71);
    box-shadow: 5px 10px 10px grey;
    color: white;
    border: none;
    border-radius: 10px;
}
#button4:hover{
    background-color: rgb(5, 37, 75);
}



#transactions{
     background-color: rgb(5, 37, 75);;
     color: whitesmoke;
     margin-top: 15px;
     margin-bottom: 20px;
     padding-left: 125px;
     padding-top: 5px;
     width: 360px;
     border-top-right-radius: 10px;
     border-top-left-radius: 10px; 
}


.hidden {
    display: none;
    
}

#log-container {
    width: 360px;
    height: 250px;
    margin: auto;
    margin-top: -20px;
    overflow: scroll;
    background-color: white;
        
}

#list {
    list-style: none;
}
.entry {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-weight: 500;
    margin-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #f1f1f1;
     
    
}

.line {
    background-color: #eee;
    border: 0 none;
    color: #eee;
    height: 2px;
}
footer {
    margin: auto;
    color: whitesmoke;
    max-width: 400px;
    height: 50px;
    padding-top: 1rem;
    text-align: center;
    background-color: rgb(5, 37, 75);
}