html,
body {
    height: auto;
    background-color: black;
    font-family: 'Adelle Mono Flex';
    color: white;
    margin: 0;
}

img {
    max-width: 100%;
    max-height: 100%;
    display: block
}

h1 {
    /* padding-left: 50px;
    padding-right: 50px; */
    font-weight: bold;
    font-size: 35px;
}

h2 {
    /* padding-left: 50px;
    padding-right: 50px; */
    font-size: 30px;
}

h3 {
    /* padding-left: 50px;
    padding-right: 50px; */
    font-size: 20px;
}

p {
    font-weight: normal;
    font-size: 15px;
    margin-left: 50px;
    margin-right: 50px;
    line-height: 150%;
}

a {
    color: white;
    text-decoration: underline;
}

canvas {
    border-top: 2px solid white;
    /* border-bottom: 2px solid white; */
}

.panel {
    height: 100vh;
    width: 100%;
    /* position: sticky; */
    top: 0;
    background-color: rgba(0, 0, 0, 0.8);
    /* border: 2px solid purple; */
    display: flex;
    box-sizing: border-box;
    border-top: 2px solid white;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

.black {
    background-color: rgba(0, 0, 0, 1);
}

.text {
    display: flex;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-left: 15%;
    margin-right: 15%;
    /* border: 2px solid tomato; */
}

.credits {
    font-weight: normal;
    font-size: 12px;
    /* margin-left: 50px;
    margin-right: 50px; */
    line-height: 150%;
}

.markTest {
    background-color: tomato;
}

.columnWide {
    float: left;
    width: 67%;
    /* border: 2px solid greenyellow; */
}

.columnNarrow {
    float: left;
    width: 32%;
    /* border: 2px solid yellow; */
}

.columnFull {
    float: left;
    width: 100%;
    /* border: 2px solid orangered; */
}

@font-face {
    font-family: 'Adelle Mono Flex';
    font-weight: normal;
    src: url('assets/fonts/AdelleMonoFlex-Regular.woff2') format('woff2'), url('assets/fonts/AdelleMonoFlex-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Adelle Mono Flex';
    font-weight: bold;
    src: url('assets/fonts/AdelleMonoFlex-Bold.woff2') format('woff2'), url('assets/fonts/AdelleMonoFlex-Bold.woff') format('woff');
}


/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */


/* 
@media screen and (max-width: 800px) {
    .panel {
        display: inline-block;
        height: 100%;
        position: relative;
    }
    .columnNarrow,
    .columnWide {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    canvas {}
    img {
        width: 80%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 10%;
        padding-right: 10%;
        border: 2px solid rgb(133, 38, 94);
    }
} */