:root {
    --header-image: url('assets/banner.jpg');
    --body-bg-image: url('assets/background.png');

    /* colors */
    --content: #2f194d;
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
    font-weight: bold;
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf');
    font-style: italic;
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
    font-style: italic;
    font-weight: bold;
}

body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    background-color: transparent;
    color: #cdd6f4;
    background-image: var(--body-bg-image);
    /* background-repeat: no-repeat; */
    background-size: cover;
    background-position: center;
}

#background-blur {
    position: absolute;;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    backdrop-filter: blur(5px);
    background: rgba(49, 50, 68, 0.8);
}

* {
    box-sizing: border-box;
}

#container {
    max-width: 800px;
    margin: 0 auto;
}

#header {
    width: 100%;
    background-color: #000000;
    height: 250px;
    background-image: var(--header-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#flex {
    display: flex;
}

aside {
    background-color: #181825;
    width: 200px;
    padding: 15px;
    font-size: smaller;
}

main {
    background-color: #1e1e2e;
    flex: 1;
    padding: 20px;
    order: 2;
}

#rightSidebar {
    order: 3;
}

#rightSidebar h1 {
margin-bottom: 0px;
}

#rightSidebar h3 {
    margin-top: 0;
    font-weight: normal;
    font-style: italic;
}

h1,
h2,
h3 {
    color: #cba6f7;
}

h1 {
    font-size: 25px;
}

strong {
    color: #eccfff;
}

#topBar {
    width: 100%;
    height: 30px;
    padding: 10px;
    font-size: smaller;
    background-color: #11111b;
}

@media only screen and (max-width: 800px) {
    #flex {
        flex-wrap: wrap;
    }

    aside {
        width: 100%;
    }

    main {
        order: 1;
    }

    #leftSidebar {
        order: 2;
    }

    #rightSidebar {
        order: 3;
    }

    #navbar ul {
        flex-wrap: wrap;
    }
}