
:root {
    --bg: #1e1f22;
    --card: #2a2c30;
    --text: #e6e6e6;
    --muted: #a0a0a0;
    --accent: OrangeRed;
    --border: #3a3d42;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--text);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 24px;
}

h1 {
    margin-bottom: 20px;
    font-weight: 600;
}

/* Таблица */
.table {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Строка ресурса */
.row {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    transition: 0.2s;
}

.row:hover {
    border-color: var(--accent);
}

/* Верх */
.row-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.title {
    font-weight: 600;
	color:Bisque;
}

/* Иконки */
.links {
    display: flex;
    gap: 10px;
}

.links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 18px;
    transition: 0.2s;
}

.links a:hover {
    color: var(--accent);
}

/* Описание */
.description {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.4;
}

/* Футер */
.footer {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
}

.footer a:hover {
    color: var(--accent);
}

/* Адаптив */
@media (max-width: 600px) {
    .row-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .links {
        align-self: flex-end;
    }
}

html, body {
	background-image: url("/i/pattern.png");
	background-color: #222222;
}
h1{font-size:24pt;color:AntiqueWhite;}
h2{font-size:16pt;color:Bisque;margin-top:40px}
 img{
	border:1px solid brown;
} 
