html {
    font-family: 'Courier New', Courier, monospace;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#header {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

#content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 90%;
    max-height: 67vh;
    gap: 30px;
    
}

.majorcontent {
    overflow-y: auto;
    scrollbar-width: thin;
    padding-top: 0;
    padding-right: 0;
    flex-basis: 50%;
}
.majorcontent div {
    padding: 15px;
}

.contenth2 {
    padding: 10px;
    margin: 0;
}

#circuitboard {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

:root {
    color-scheme: light dark;
}

#projects > * {
    background-color: Canvas;
}

#news > * {
    background-color: Canvas;
}

#circuitControl {
    display: flex;
    position: fixed;
    height: 50px;
    width: 200px;
    top: calc(100% - 50px);
    left: calc(100% - 200px);
    flex-direction: row;
}

#circuitControl button {
    margin: 5px;
}
