body {
    background-image: url("./images/bg.jpg");
    background-size: cover;
    font-family: "Comfortaa", sans-serif;
    font-weight: bold;
    text-align: center;
    color:rgb(60, 52, 47);;
}
.container {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 10px solid rgb(60, 52, 47);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.66);
    width: 50vh;
    margin: 0 auto;
}
h1 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 800px;
    text-shadow: 4px 4px 4px rgba(44, 111, 6, 0.2);
}

h2 {
    font-size: 80px;
    margin-top: 0;
    margin-bottom: 20px;
}

button {
    border: none;
    padding: 10px 0;
    color: white;
    font-weight: bold;
    width: 200px;
    margin-bottom: 5px;
    border-radius: 5px;
}

#increment-btn {
    background: rgb(133, 148, 43);
}

#save-btn {
    background: rgb(5, 59, 26);
}

