body {
    font-family: Arial, sans-serif;
    background: #ffffff; /* белый фон */
    color: #000000; /* черный текст */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

h1 {
    margin-bottom: 30px;
    font-size: 32px;
}

button {
    background: #0088cc; /* голубой цвет кнопки */
    color: #ffffff; /* белый текст на кнопке */
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 20px; /* большие скругления */
    transition: background 0.3s, transform 0.2s;
}

button:hover {
    background: #00aaff;
    transform: translateY(-2px);
}

#code {
    margin-top: 20px;
    font-size: 24px;
    background: #f0f0f0; /* светлый фон для блока кода */
    color: #000000; /* черный текст */
    padding: 15px 25px;
    border-radius: 20px; /* большие скругления */
    cursor: pointer;
    user-select: all;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.3s;
}

#code:hover {
    transform: scale(1.05);
}

#loader {
    margin-top: 20px;
    display: none;
    font-size: 18px;
    color: #555555;
}
