/* Подключение шрифта */
@font-face {
    font-family: 'BackToTheFuture';
    src: url('fonts/v_backtothefuture2002_regular.ttf') format('truetype');
}

/* Основные стили */
body {
    background-color: #000; /* Черный фон */
    color: #00ff00; /* Зеленый цвет текста */
    font-family: 'BackToTheFuture', monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.time-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.row {
    text-align: center;
}

.label {
    font-size: 1.2rem;
    color: #ff0000; /* Красный цвет для меток */
}

.value {
    font-size: 3rem;
}

.info-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Увеличенный текст для температуры и влажности */
.info-container p {
    font-size: 2.5rem; /* Увеличенный размер шрифта */
}

/* Стили для футера */
footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px 0;
    color: #00ff00; /* Зеленый цвет текста */
    font-size: 1.2rem;
}

footer a {
    color: #ff0000; /* Красный цвет ссылки */
    text-decoration: underline; /* Подчеркивание текста */
}

footer a:hover {
    text-decoration: none; /* Убираем подчеркивание при наведении */
}

