body { 
    margin: 0; 
    font-family: "aktiv-grotesk", sans-serif;
    font-weight: 400;
    font-style: normal;  

    --mainBodyFontSize: 0.8rem;
    --mainLineSpacing:0.6rem;
}

@font-face {
    font-family: mainBody; /* set name */
    src: url(SourceCodePro-Regular.ttf); /* url of the font */
    font-weight: 100;
}

@font-face {
    font-family: mainBody; /* set name */
    src: url(SourceCodePro-Bold.ttf); /* url of the font */
    font-weight: bold;
}

@font-face {
    font-family: mainBody; /* set name */
    src: url(SourceCodePro-Italic.ttf); /* url of the font */
    font-weight: italic;
}

#canvasContainer {
    height: 94vh;
    margin: 1rem;
    margin-top: 0;
    box-sizing: border-box;
    position: relative;
}

#canvasContainer .borderMarks {
    content: "";
    height: 1rem;
    width: 1rem;

    display: block;
    position: absolute;
    border: 1px solid rgb(136, 136, 136);
}

#canvasContainer .borderMarks:nth-child(2) {
    border-right: none;
    border-bottom: none;
    top: 0;
    left: 0;
}

#canvasContainer .borderMarks:nth-child(3) {
    border-left: none;
    border-bottom: none;
    top: 0;
    right: 0;
}

#canvasContainer .borderMarks:nth-child(4) {
    border-left: none;
    border-top: none;
    bottom: 0;
    right: 0;
}

#canvasContainer .borderMarks:nth-child(5) {
    border-right: none;
    border-top: none;
    bottom: 0;
    left: 0;
}

#canvasHeader {
    padding: 1rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
}

#canvasHeader p{
    margin: 0;
    display: inline;
    margin-right:1rem;
    /* margin: auto; */
}


#bodyContainer {
    max-width: 50rem;
    /* margin: auto; */
    padding: 1rem;
    padding-top: 0rem;
    /* box-sizing: border-box; */
    /* position: absolute; */
    
}

img {
    max-width: 100%;
    max-height: 35vh;
}

/* FONTS */
h1 {
    font-family: mainBody;
    font-size: var(--mainBodyFontSize);
    font-weight: 100;
    text-align: center;
    /* background-color: rgb(0, 0, 0); */
    /* padding-top: var(--mainLineSpacing); */
    /* padding-bottom: var(--mainLineSpacing); */
    margin: 0;
    text-decoration: underline;
    /* background-color: whitesmoke; */
}

h2 {
    font-family: mainBody;
    font-size: var(--mainBodyFontSize);
    font-weight: 100;
    /* text-align: center; */
    
    /* background-color: rgb(0, 0, 0); */
    /* padding-top: var(--mainLineSpacing); */
    /* padding-bottom: var(--mainLineSpacing); */
    margin: 0;
    /* text-decoration: underline; */
    /* background-color: whitesmoke; */
}


p {
    font-family: mainBody;
    font-size: var(--mainBodyFontSize);
    font-weight: 100;
    margin: 0;
}

ul {
    margin-top: 0;
    margin-bottom: 0;
    list-style-type: "- ";
}

li {
    font-family: mainBody;
    font-size: var(--mainBodyFontSize);
    font-weight: 100;
}

a {
    color: #3f3f8c;
}

p {
    /* padding-top: var(--mainLineSpacing); */
    /* padding-bottom: var(--mainLineSpacing); */
}

hr {
    margin-top: var(--mainLineSpacing);
    margin-bottom: var(--mainLineSpacing);
}

blockquote {
    margin-top: 0;
    margin-bottom: 0;
    color: #188fea;
}