body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
    font-family: 'Roboto', sans-serif;
}
.container {
    max-width: 95%;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}
img {
    max-width: 400px;
}
button {
    width: 100%;
    margin-bottom: 20px;
    padding: 10px 20px;
    font-size: 18px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button--loading::after {
    content: "";
    width: 15px;
    height: 15px;
    border: solid rgba(0, 0, 0, 0.1);
    border-top-color: #f15874;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

button.button--loading {
    display: flex;
    justify-content: center;
}

.button--loading .button__text {
    display: none;
}

#generateButton {
    background: linear-gradient(90deg, #eeac43, #f15874);
}
#telegramButton {
    background: linear-gradient(90deg, #2a3797, #0d87d2);
}
#githubButton {
    background: black;
}
button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#status {
    margin-bottom: 20px;
    color: red;
}