:root {
    --bg: #060607;
    --panel: #0f0f10;
    --muted: #bdbdbd;
    --muted-2: #939598;
    --accent: #d72631;
    --white: #ffffff;
    --max-width: 1100px;
    --radius: 12px;
    --gap: 20px;
    --transition: 200ms ease;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: var(--bg);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.45;
    padding: 24px;
}

@media only screen and (max-width: 720px) {
    body {
        padding: 0px;
    }
}

p {
    margin: 0px;
}

a {
    color: var(--accent);
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

img {
    display: table;
}