* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    background: #000;
}

.container {
    text-align: center;
}

.title {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.buttons {
    display: flex;
    flex-direction: row; /* кнопки в ряд */
    gap: 15px;
    justify-content: center;
}

/* Кнопка */
.btn {
    display: flex;
    align-items: center;
    background: #0d0d0c;
    color: #fff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    transition: background 0.2s;
}

.btn img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
}

.btn:hover {
    opacity: 0.9;
}

/* Пример кастомных цветов */
.btn.telegram {
    background: #0088cc;
}
.btn.github {
    background: #24292f;
}
.btn.other {
    background: #6c757d;
}
