/* Основные стили страницы */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f1b4ca;
    margin: 0;
    padding: 0;
}

/* Заголовок */
h1 {
    color: #204c20;
    font-size: 2.5em;
    margin-top: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Стили для кнопок и полей ввода */
button, input {
    margin: 10px;
    padding: 12px;
    border-radius: 8px;
    font-size: 1.1em;
    border: 2px solid #4CAF50;
    outline: none;
    transition: all 0.3s ease;
}

/* Стили для кнопки */
button {
    background-color: #4CAF50;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button:hover {
    background-color: #45a049;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);


input[type="number"] {
    width: 120px;
    text-align: center;
    background-color: #f1f1f1;
    border: 2px solid #4CAF50;
}

input[type="number"]:focus {
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(72, 201, 89, 0.7);
}

/* Изображения */
img {
    max-width: 200px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/* Ответы */
#vastus, #vastus2 {
    font-weight: bold;
    padding: 12px;
    margin-top: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#vastus {
    color: white;
    background-color: #FF6347;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Тень */
}

#vastus2 {
    background-color: #F0E68C;
    color: #333;
    font-size: 1.2em;
    display: inline-block;
    padding: 15px;
}

#vastus:hover, #vastus2:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);


.container {
    background: linear-gradient(145deg, #ffffff, #f7f7f7);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2)} } }

