@import url("https://www.nerdfonts.com/assets/css/webfont.css");
@import url("theme.css");
@import url("article.css");
@import url("footer.css");
@import url("header.css");

* {
    margin: 0px;
    padding: 0px;
    font-family: sans-serif;
}

a {
    text-decoration: none;
}

body {
    background-color: var(--bg-color0);
    display: flex;
    justify-content: center;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.content {
    background-color: var(--bg-color1);
    border-radius: 5px;
    width: 80%;
    margin-top: 50px;
    margin-bottom: 50px;
    max-width: 1000px;
}