header {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;

}

#info-box {
    position: absolute;
    top: 20px;
    left: 20px;
    line-height: 1;
    max-width: 90%;
    font-size: 0.8rem;
    font-family: monospace;
}

#info-box-2 {
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
    max-width: 90%;
    font-size: 0.8rem;
    font-family: monospace;
    text-align: right;
}

@media (max-width: 600px) {
    #info-box {
        font-size: 0.9rem;
        left: 10px;
        top: 10px;
    }
}

#main-content {
    margin-top: 220px;
    margin-left: 20px;
    margin-right: 20px;
}

h1 {
    font-family: monospace;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
}

h2 {
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

p {
    font-family: monospace;
    font-size: 0.8rem;
    text-align: justify;
}

figcaption {
    font-family: monospace;
    font-size: 0.7rem;
}

table, th, td, tr {
    font-family: monospace;
    font-size: 0.8rem;
}

li {
    font-family: monospace;
    font-size: 0.8rem;
}

ol {
    font-family: monospace;
    font-size: 0.8rem;
}

a {
    color: #357AB5;
    text-decoration: none;
}
.box-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

pre {
    background: #f4f4f4;
    padding: 10px;
    white-space: pre-wrap;
    margin-top: 10px;
}

.canvas-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px;
    padding: 0px;
}

canvas {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-top: -110px;
} 

@media (min-width: 768px) {
    .canvas-container {
        flex-wrap: nowrap;
    }
}
.SideOnSide {
    display: flex;
    
}

details, summary {
    font-family: monospace;
}