body {
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    background-color: #001128;
}

header {
    background-color: #f59f24;
    padding: 16px;
    margin-bottom: 24px;
    color: #ffff8c;
}

main {
    max-width: 600px;
    margin: 0 auto;
    padding: 8px;
}

h1,
h2 {
    margin: 0;
    font-size: 32px;
    text-shadow: 1px 1px 2px black;
}

.card {
    padding: 16px;
    background-color: #2675ae;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
    color: aliceblue;
    box-shadow: 4px 4px 12px black;
}

.progress-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    justify-items: center;
    gap: 4px;
    min-width: 320px;
    max-width: 580px;
    text-align: center;
    margin: 0 auto;
}

.completed-segment {
    height: 40px;
    flex-grow: 1;
    background-color: aliceblue;
    box-shadow: 0 0 12px aliceblue;
}

.incomplete-segment {
    height: 40px;
    background-color: #001128;
    flex-grow: 1;
}

.progress-display {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 24px;
}