@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 600;
    font-stretch: normal;
    font-display: swap;
    src: url("opensans.woff2") format('woff2');
}

:root {
    --text-color: #333;
    --background-color: #fff;
    --header-background-color: #f5f5f5;
    --highlight-color: #ddd;
    font: 400 16px/24px -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"
}

@media screen and (prefers-color-scheme: dark) {
    :root {
        --text-color: #dfdfe0;
        --background-color: #1d1f21;
        --header-background-color: #1d1f21;
        --highlight-color: #333;
    }
}

.synthmodes-header {
    padding: 4px;
    padding-left: 12px;
    background-color: var(--header-background-color);
    height: 40px;
    display: flex;
    align-items:center;
}

.synthmodes-header-left {
    align-items: baseline;
}

.synthmodes-header-right {
    margin-left: auto;
}

.synthmodes-logo {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 24px;
    color: var(--text-color);
}

.synthmodes-sublogo {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: var(--text-color);
}

.synthmodes-content {
    padding: 4px;
    background-color: var(--background-color);
}

.synthmodes-hero {
    padding-top: 24px;
    padding-bottom: 24px;
    text-align: center;
    font-size: 18px;
}

.synthmodes-body {
    margin: 0;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--background-color);
}

a {
    text-decoration: none;
}

.moduleList {
    list-style: none;
    padding-inline-start: 4px;
}

.samplepack {
	background-color: #eeeeee;
	margin: 20px;
	border: 2px solid #666666;
	border-radius: 5px;
	padding: 7px;
}

.samplepack-content {
	display: flex;
}

.samplepack-text {
	margin-left: 10px;
}

.synthmodes-footer {
    display: flex;
    flex-direction: row;
}

.synthmodes-footer-col {
    flex: 1;
    padding: 4px;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 800px) {
    .contentWrapper {
        flex-direction: column;
        overflow: auto;
    }
    .sidebar {
        overflow:unset;
        height: 100%;
        margin:0;
    }
    .mainWrapper {
        overflow:unset;
        margin:0;
    }
    .synthmodes-footer {
        flex-direction: column;
    }
}