
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


body {
    font-family: 'Montserrat', sans-serif;
}
button {
    cursor: pointer !important; /* Курсор превращается в палец при наведении на любую кнопку */
}
h1 {
    font-size: 2.2 em;
    font-weight:900;
}

h2 {
    font-size: 1.7 em;
    font-weight:800;
}

h3 {
    font-size: 1.3 em;
    font-weight:800;
}
.log-result {
    height: 200px;
    width: 500px; /* Оставляем для десктопов */
    overflow-y: auto;
    border: 1px solid #464646;
    padding: 10px;
    margin-bottom: 10px;
    white-space: pre-wrap;
    font-family: monospace;
    font-size: 12px;
    background-color: #202020a6;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .log-result {
        width: 100%; /* На мобильных устройствах ширина 100% */
    }
}
.buttons {
    
    padding: 0 0 0 0 ;
    margin-bottom: 40px;
    
}
.container {
 margin-bottom: 100px;
    
}
blockquote {
    
    font-style: italic;
    color: #a1e2ff;
    font-weight:300;
    border-left: 10px solid #34aadf;  /* Цветная линия слева */
    padding-left: 20px;
    margin: 20px 0;
    quotes: "«" "»";  /* Стиль кавычек */
    position: relative;
}

blockquot:hover {
    color: #85f2b3;  /* Изменение цвета текста при наведении */
    border-left-color: #333;  /* Изменение цвета линии при наведении */
    transition: all 0.3s ease-in-out;
}

.important {
    
    font-style: italic;
    color: #ff87a4;
    font-weight:300;
    border-left: 10px solid #df3471;  /* Цветная линия слева */
    padding-left: 20px;
    margin: 20px 0;
    quotes: "«" "»";  /* Стиль кавычек */
    position: relative;
}

.important:hover {
    color: #ff87a4;  /* Изменение цвета текста при наведении */
    border-left-color: #df3471;  /* Изменение цвета линии при наведении */
    transition: all 0.3s ease-in-out;
}
.btn-right {
    float: right;
    
}
.btn-gray {
   
    cursor: pointer;
    opacity: 0.5;
    background-color: #8080804f; /* Серый цвет */
    color: #ffffff; /* Белый цвет текста */
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease; /* Плавное изменение цвета при наведении */
    
}
.btn-gray:hover {
    background-color: #3c3c3c; /* Чуть светлее серый цвет при наведении */
}
hr {
    margin-top: 40px; /* Отступ сверху 50 пикселей */
    margin-bottom: 80px; /* Отступ снизу 100 пикселей */
    border: 0; /* Убираем стандартную границу */
    border-top: 1px solid #ccc; /* Добавляем верхнюю границу */
}

.bold-text {
    color: #4787a6; 
    font-weight: bold;

}