body {
    font-family: Arial, sans-serif;
    background-color: #696969;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: black; /* Все тексты чёрные */
}

.container {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5em;
    color: black; /* Заголовок чёрный */
}

p {
    font-size: 1.25em;
    color: black; /* Параграф чёрный */
}

.highlight {
    font-weight: bold;
    color: black; /* Выделенный текст чёрный */
}
