body {
    background-color: lightgray;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    position: relative;
}

#reset_button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 85px;
    height: 35px;
    padding: 8px 16px;
    font-size: 14px;
    justify-content: center;
}
#deposit_button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 85px;
    height: 35px;
    padding: 8px 16px;
    font-size: 14px;
    justify-content: center;
}

#miata_fund {
    position: absolute;
    top: 3px;
    left: 25px;
    width: auto;
    height: auto;
    font-size: 25px;
}


.content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {    
    color: black;
    margin-bottom: 20px;
    justify-content: center;
    font-size: 64px;
} 

h2 {
    color: black;
} 

button {
    border: none;
    padding-top: 10px;
    padding-bottom: 10px;
    color: white;
    font-weight: bold;
    width: 300px;
    height: 100px;
    margin-bottom: 5px;
    border-radius: 5px;
    font-size: 64px;
}

button:active {
    transform: scale(0.95);
}

#increment_button {
    background-color: darkgrey;
}

#reset_button {
    background-color: red;
}

#deposit_button {
    background-color: green;
}