
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html, body {
    height: 100%;
    width: 100%;
    font-family: 'Quicksand', sans-serif;
}

body {
    background-image: url('images/train.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


h1 {
    margin-top: 10px;
    margin-bottom: 10px;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

h2 {
    font-size: 50px;
    margin-top: 0;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.counter-container {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px); 
    -webkit-backdrop-filter: blur(4px); 
    text-align: center;
    margin-bottom: 20px;
}

button {
    border: none;
    padding: 10px 0;
    color: white;
    font-weight: bold;
    width: 200px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

button:hover {
    opacity: 0.9;
}


#increment-btn {
    background-color: darkred;
}


#save-btn {
    background-color: darkgreen;
}

p{
    color: white;
    font-weight: bold; 
    margin-top: 20px;
}