body {
    background-image: url("butterflies-on-wall.jpg");
    background-size: contain;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
   
}

.container {
    background: white;
    max-width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 50px;
    height: 40vh;
    align-items: center;
    border: 3px solid black;
    border-radius: 8px;
}

h1 {
    margin-top: 15px;
    margin-bottom: 15px;
}

h2 {
    font-size: 40px;
    margin-top: 0;
    margin-bottom: 20px;
}



    
button {
    border: none;
    padding-top: 10px;
    padding-bottom: 10px;
    color: white;
    font-weight: bold;
    width: 200px;
    margin-bottom: 5px;
    border-radius: 5px;
}

#increment-btn {
    background: hotpink;
}

#save-btn {
    background: hotpink;
}

