/* does something idk */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* differently color links from the content */
a:link, a:visited { color: #fff; }

body {
    /*
    font-family: 'Jetbrains Mono';
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    width: 100vw;
    height: 100vh;
    padding: 0 16px;
    background: #000;
    color: #fff;
    max-width: 650px;
    */

    /* confirmed working code */

    
    font-family: 'Jetbrains Mono';
    background: #000;
    color: #fff;
    margin: 40px auto;
    max-width: 650px;
    line-height: 1.6;
    font-size: 18px;
    padding: 0 10px;

    /* experimental changes from maci's css */
    gap: 2rem;
    
}

/* the following code makes the download pic work */
#download-section {
    border: 1px solid black;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    max-width: fit-content;
    gap: 1.5rem;
    color: black; /* hack for text inside download sections not being colored */
    filter: invert(100%); /* lazy hack to make the embed work oer a black background */
}