* {
    font-size: 1.5rem;
}

body {
    background-color: #a4b9e1;
    background-size: cover;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-weight: bold;
}

.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btn-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

h1 {
    margin: 10px 0;
}

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

button {
    border: 2px solid;
    font-size: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-weight: bold;
    width: 340px;
    margin: 7px;
    border-radius: 7px;
    cursor: pointer;
}

#increment-btn {
    color: rgb(67, 11, 11);
    border-color: rgb(67, 11, 11);
    background: rgb(255, 202, 202);
}

#save-btn {
    color: rgb(14, 59, 14);
    border-color: rgb(14, 59, 14);
    background-color: rgb(196, 255, 196);
}