/* Центрирование содержимого */
.centered-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #1e90ff, #87ceeb);
    color: white;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

/* Основной заголовок */
.main-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Время */
.time-display {
    font-size: 6rem;
    font-weight: bold;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
