:root {
    --main: #ddd;
    --accent: rgb(255, 80, 0);
    --secondary: #dd8;
}

html, body {
    margin: 0;
    padding: 0;
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    background-color: black;
    color: var(--main);

    font-family: "IBM Plex Sans", sans-serif;
    font-style: normal;
    font-size: 1.25em;
}

h1, h2 {
    margin-top: 0;
}

main {
    position: relative;
    margin: 2rem auto;
    width: 60%;
    max-width: 800px;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.7);

    --grid-color: #292929;
    --grid-thickness: 0.1em;
    border-color: var(--grid-color) !important;
    border-right: solid var(--grid-thickness);
    background-image: 
        linear-gradient(to right, var(--grid-color) var(--grid-thickness), transparent var(--grid-thickness)),
        linear-gradient(to bottom, var(--grid-color) var(--grid-thickness), transparent var(--grid-thickness));
    background-size: var(--grid-size) var(--grid-size);
}

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

q {
    font-style: italic;
}

ul {
    list-style: none;
    padding-left: 1.2em;
}

li {
    position: relative;
    color: white;
}

li::before {
    content: "■";
    position: absolute;
    left: -1.2em;
    color: var(--main);
    transition: color 0.1s ease;
}

li:hover::before {
    color: var(--accent);
    animation: bulletHi 0.1s;
}

@keyframes bulletHi {
  0% { color: var(--main); }
  100% { color: var(--accent); }
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#stars {
    animation: starsPan 1s linear infinite;
}

@keyframes starsPan {
}

.star {
    z-index: -1;
    position: absolute;
    width: 0.125em;
    height: 0.125em;
    animation-fill-mode: both;
    rotate: 45deg;
}

@keyframes starAnimate {
    0% { transform: scale(0.5); }
    40%, 100% { transform: scale(1); }
}
