/*
    Awadesh Nautiyal
*/

/* Setting background image and font styles for the entire page */
body {
    background-image: url("fit.jpg");
    /* Background image */
    background-size: cover;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    /* Font family */
    font-weight: bold;
    text-align: center;
    /* Center-align text */

    height: 100vp;
}

/* Styling for the total button */
#total-btn {
    background-color: aqua;
    /* Background color */
    color: black;
    /* Text color */
}

/* Styling for the heading element */
h1 {
    color: white;

    margin-top: 10px;
    /* Top margin */
    margin-bottom: 10px;
    /* Bottom margin */
    
}

/* Styling for the "Let's Start From Scratch" button */
#End-btn {
    background-color: rgb(255, 0, 0);
    /* Background color */
    color: white;
    /* Text color */

    margin-top: 300px;
}

/* Styling for the subheading element */
h2 {
    color: white;

    font-size: 50px;
    /* Font size */
    margin-top: 0;
    /* Top margin */
    margin-bottom: 20px;
    /* Bottom margin */
}

/* Adjusting text size for paragraphs */
p {
    color: wheat;

    text-size-adjust: 49%;
   
    /* Adjust text size */
}

/* Common styles for all buttons */
button {
    border: none;
    /* No border */
    padding-bottom: 10px;
    /* Padding at the bottom */
    color: rgb(243, 237, 237);
    /* Text color */
    font-weight: bold;
    /* Bold text */
    width: 200px;
    /* Button width */
    text-decoration: solid;
    /* Solid text decoration */
    font-size: 20px;
    /* Font size */
    margin: 10px;
    /* Margin around buttons */
    padding: 20px;
    /* Padding inside buttons */
}

/* Styling for the "Increment" button */
#increment-btn {
    background: darkred;
    /* Background color */
}

/* Styling for the "Save" button */
#save-btn {
    background: darkgreen;
    /* Background color */
}