body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.container {
    position: relative;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    overflow: hidden;
}

.container img {
    width: 100%;
    height: auto;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.text-content {
    padding: 20px;
}

h1 {
    color: #0056b3;
    margin-bottom: 20px;
}

h2 {
    color: #004085;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.countdown {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.countdown-item {
    font-size: 1.5rem;
    font-weight: bold;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.marathon-date,
.weeks-left {
    font-size: 1.2rem;
    margin-top: 20px;
}

.preparation-info {
    margin-top: 20px;
    text-align: left;
    padding: 10px;
    background-color: #e9ecef;
    border-radius: 5px;
}

.motivation {
    margin-top: 20px;
    font-style: italic;
    color: #0056b3;
}

.motivation-author {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 5px;
}

.local-start-time {
    margin-top: 10px;
    font-size: 1rem;
    color: #004085;
}

.post-race-message {
    margin-top: 20px;
    font-weight: bold;
    color: #004085;
}

.deployment-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #e9ecef;
    padding: 8px 0;
    text-align: center;
    font-size: 0.75rem;
    color: #6c757d;
    border-top: 1px solid #dee2e6;
    z-index: 1000;
    box-sizing: border-box;
}

.deployment-footer p {
    margin: 0;
}

@media (max-width: 480px) {
    .countdown {
        flex-wrap: wrap;
    }
    .countdown-item {
        width: 50%;
        margin-bottom: 10px;
    }
}
