body, html {
    margin: 0;
    padding: 0;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    background-image: url('../img/run.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: rgb(225, 225, 225);
    text-align: center;
    font-size: 16px;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
}

h1 {
    font-size: 5.5em;
    margin-bottom: 20px;
}

h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

.category {
    margin-bottom: 40px;
}

.progress-bar {
    background: rgba(16, 94, 116, 0.384);
    border-radius: 25px;
    margin-bottom: 20px; 
    padding: 15px;
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    align-items: center;
}

.progress-bar .progress {
    background: transparent; 
    width: 100%; 
    height: 20px;
    border-radius: 25px;
    transition: width 0.5s ease-in-out;
    background: rgb(26, 168, 26); 
    margin-bottom: 10px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-bar span {
    font-size: 1.75em; 
}

.success .progress {
    background: rgb(16, 111, 16); 
}

.pending .progress {
    background: orange; 
}

@media (max-width: 600px) {
    .container {
        width: 80%;
    }
    h1 {
        font-size: 4em;
    }
    h2 {
        font-size: 2em;
    }
}
