/*hi im insane*/

@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@500&family=Ubuntu&display=swap');
@font-face {
  font-family: "Ellograph CF";
  src: url("https://steviol.ru/assets/fonts/EllographCF-Regular.woff2") format('woff2');
}

:root {
    --color-bg: #171717;
    --color-bg-l: #303030;
    --color-text: #fdfdfd;
    --color-accent: #939393;
}

html {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: 'Ellograph CF', 'Fira Code', monospace;
    font-size: 20px;
    height: 100%;
    width: 100%;
}

body {
    margin: 0;
    height: inherit;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    height: 100%;
    width: 100%;
    max-width: 600px;
}

.fontawesome-icon {
    color: var(--color-accent);
    opacity: 0.4;
}

.header {
    color: var(--color-accent);
    font-weight: 700;
}

.about {
    margin: 0;
}

.link-button {
    background: var(--color-bg-l);
    color: var(--color-text);
    /* border: 2px solid var(--color-accent);
    padding: 5px;
    margin: 3px; */
    border-radius: 5px;
    padding: 9px;

    flex-grow: 1;
    min-width: 150px;
    text-align: center;
    text-decoration: none;
    transition: all 0.1488s;
}

.link-button:hover {
    background: var(--color-accent);
    color: var(--color-bg);
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    border-radius: 15px;
    overflow: hidden;
}

@media (max-width: 600px) {
    .wrapper {
        justify-content: unset;
        width: 90%;
    }
}
