body {
    /* background-image: url("station.png"); */
    background-size: cover;           /* Ensures the image covers the screen */
    background-position: center;      /* Centers the image */
    background-repeat: no-repeat;     /* Prevents tiling */
    min-height: 100vh;                /* Ensures body is at least full viewport height */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Georgia', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    text-align: center;
}

h1 {
    font: Georgia, serif;
    color: black;
    margin-top: 10px;
    margin-bottom: 10px;
}

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

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

#increment-btn {
    background: rgb(70, 145, 88);
}

#save-btn {
    background: rgb(180, 92, 171);
}

/* Add this to your CSS file */
.center-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical centering */
    align-items: center;     /* horizontal centering */
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("station.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px); /* Adjust blur strength as needed */
    z-index: -1;
}

