@font-face {
font-family: 'Roboto Mono';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(fonts/Roboto_Mono/RobotoMono-Light.ttf) format('truetype');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD, U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
font-family: 'Roboto Mono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(fonts/Roboto_Mono/RobotoMono-Regular.ttf) format('truetype');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD, U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
font-family: 'Roboto Mono';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(fonts/Roboto_Mono/RobotoMono-SemiBold.ttf) format('truetype');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD, U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'IBM BIOS';
    font-style: normal;
    font-display: swap;
    src: url(fonts/Roboto_Mono/WebPlus_IBM_BIOS.woff) format('woff');
    /* unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD, U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; */
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.326;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



* {
    box-sizing: border-box !important;
}

:root {
    font-size: 32px;
    font-family: "Roboto Mono", 'Courier New', Courier, monospace;
    /* font-family: "IBM BIOS", "Roboto Mono", monospace; */

    --section-xmargin: 1rem;
    --section-ymargin: 32px;
}


body {
    background-color: rgb(25.5, 25.5, 25.5);
    color: rgb(50, 205, 50);
    font-weight: 400;
    font-size: 0.75rem;
    overflow: hidden scroll;
}

header {
    text-align: center;
    border-bottom: 1px solid rgb(50, 205, 50);
    padding: 1rem 0rem;
    margin-bottom: 1rem;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

section {
    width: calc(100% - var(--section-xmargin) * 2);
    margin: 0rem var(--section-xmargin) var(--section-ymargin) var(--section-xmargin);
    max-width: 1920px;
}

section:last-of-type {
    margin-bottom: 0;
}

.section-header {
    text-align: left;
    font-size: 1.3rem;

    margin-bottom: 0.3rem;
    padding: 0.2rem 0;
}

.section-header::before {
    content: "∘ ";
    width: 10px;
    height: 10px;
}

.double-column {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.double-column > * {
    flex-basis: 50%;
    flex-grow: 0;
}

#my-intro {
    width: 80%;
}

#image-column {
    display: flex;
    direction: row;
    justify-content: center;
    align-items: center;
}

#image-column > div {
    background-image: url(images/edged.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 75%;
}


.bullet-list {
    list-style: inside "- ";
}

#center-IGCSE {
    display: flex;
    justify-content: center;
    width: 100%;
}

#IGCSE-results {
	border-collapse: collapse;
	border-spacing: 0;
    max-width: 1300px;
    width: calc(100% - 2rem);
    margin: 1rem 1rem;
}

#IGCSE-results th {
    font-weight: 700;
    text-decoration: underline solid;
}

#IGCSE-results td, th {
    text-align: center;
    border: 1px solid rgb(50, 205, 50);
}

footer::before {
    content: "";
    display: block;
    width: 50%;
    height: 1%;
    border-top: 1px rgb(0, 70, 0) dashed;
    margin-bottom: 1rem;
}

footer {
    margin-top: var(--section-ymargin);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100px;
    height: fit-content;
    margin-bottom: 1rem;
    width: 100%;
}

footer h1 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

footer a {
    text-decoration: none;
}

footer li {
    margin-bottom: 0.1rem;
}

footer svg {
    vertical-align: -10%;
    height: 1em;
    width: 1em;
}

@media (max-width: 767.98px) {
    :root {
        font-size: 24px;
        --section-xmargin: 0.25rem;
    }
}

@media (max-width: 991.98px) { 
    #my-intro {
        width: 100%;
    }

    #image-column {
        display: none;
    }

    .double-column > * {
        flex-basis: 100%;
        flex-grow: 1;
    }
}