body {
    background-color: black;
    color: white;
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 32px; /* Doubled base font size */
}

.screen {
    display: none;
    padding: 40px; /* Doubled from 20px */
}

.screen.active {
    display: block;
}

button {
    background-color: #555;
    color: white;
    border: none;
    padding: 30px 60px; /* Doubled padding */
    font-size: 32px; /* Doubled font size */
    cursor: pointer;
    margin: 40px auto; /* Doubled margin */
    display: block;
}

button:hover {
    background-color: #777;
}

img {
    width: 100%;
    max-width: 600px; /* Doubled max-width */
    margin: 40px 0; /* Doubled margin */
}

#homeLogo {
    width: 50%; /* Adjust as needed */
    max-width: 300px; /* Control max size of the logo */
    margin-bottom: 40px; /* Space between logo and content */
}

.progress-bar {
    width: 400px; /* Increased from 300px to 400px */
    height: 40px; /* Doubled height */
    background-color: #333;
    border-radius: 20px; /* Doubled border-radius */
    margin: 40px auto; /* Doubled margin */
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background-color: #fff;
    border-radius: 20px; /* Doubled border-radius */
}

.status-text {
    color: lightgrey;
    font-size: 24px; /* Increased font size */
}

.counter {
    color: lightgrey;
    font-size: 36px; /* Doubled font size */
}

#countdownTimer {
    font-size: 96px; /* Doubled font size */
    margin: 80px 0; /* Doubled margin */
}

/* Styles for the distance graph */
#distanceGraph {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 400px; /* Doubled height */
    margin: 40px 0; /* Doubled margin */
}

#distanceGraph div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#distanceGraph .bar {
    width: 40px; /* Doubled width */
    background-color: #555;
    margin: 0 10px; /* Doubled margin */
}

#distanceGraph .bar.highlight {
    background-color: #fff;
}

#distanceGraph .label {
    color: lightgrey;
    margin-top: 10px; /* Doubled margin */
    text-align: center;
    font-size: 24px; /* Increased font size */
}

#explanationText {
    color: lightgrey;
    font-size: 24px; /* Increased font size */
    margin-top: 20px; /* Doubled margin */
}
