/* Reset */
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;
}
* {
    box-sizing: border-box;
}



/* Variables */
:root {
    --desktop-font-size: 1.3rem/1.5;
    --mobile-font-size: 1.1rem/1.4;
    --text-color: #313131;
    --link-color: #00cf70;
    --primary-color: #00cf70;
    --secondary-color: #d8d8d8;
    --tertiary-color: #f6f6f6;
}




/* Typography */
@font-face {
  font-family: 'Fabrikat';
  src: url("https://www.dwi.rwth-aachen.de/themes/custom/dwi/vendor/fonts/hvd_fonts_-_fabrikat-webfont.woff2") format("woff2"), url("https://www.dwi.rwth-aachen.de/themes/custom/dwi/vendor/fonts/hvd_fonts_-_fabrikat-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Fabrikat';
  src: url("https://www.dwi.rwth-aachen.de/themes/custom/dwi/vendor/fonts/hvd_fonts_-_fabrikat_italic-webfont.woff2") format("woff2"), url("https://www.dwi.rwth-aachen.de/themes/custom/dwi/vendor/fonts/hvd_fonts_-_fabrikat_italic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: italic; }

@font-face {
  font-family: 'Fabrikat';
  src: url("https://www.dwi.rwth-aachen.de/themes/custom/dwi/vendor/fonts/hvd_fonts_-_fabrikat_bold-webfont.woff2") format("woff2"), url("https://www.dwi.rwth-aachen.de/themes/custom/dwi/vendor/fonts/hvd_fonts_-_fabrikat_bold-webfont.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'Fabrikat';
  src: url("https://www.dwi.rwth-aachen.de/themes/custom/dwi/vendor/fonts/hvd_fonts_-_fabrikat_bold_italic-webfont.woff2") format("woff2"), url("https://www.dwi.rwth-aachen.de/themes/custom/dwi/vendor/fonts/hvd_fonts_-_fabrikat_bold_italic-webfont.woff") format("woff");
  font-weight: bold;
  font-style: italic; }

body {
    color: var(--text-color);
    font: var(--desktop-font-size) 'Fabrikat',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto, Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji", "Segoe UI Symbol";
}

h1,h2,h3,h4,h5,h6,p,blockquote,dl,img,figure {
    margin: 2rem 0;
}

h1,h2,h3,h4,h5,h6 { font-weight: bold; }
h1 { font-size: 200%; }
h2 { font-size: 150%; }
h3 { font-size: 120%; }
h4,h5,h6 { font-size: 100%; }
h5, h6 { text-transform: uppercase; }

header h1 { border-bottom: 1px solid; }

p { margin: 2rem 0; }

a,a:visited { color: var(--link-color); position: relative; text-decoration: none; }
a { border-bottom: 2px solid var(--link-color); padding-bottom: 0; transition: padding-bottom 0.2s ease; }
a:hover { padding-bottom: 3px; }

strong, time, b { font-weight: bold; }
em, dfn, i { font-style: italic; }
sub { font-size: 60%; vertical-align: bottom; }
small { font-size: 80%; }

blockquote, q {
    background: var(--tertiary-color);
    border-left: 10px solid var(--primary-color);
    font-style: italic;
    padding: 1rem;
}
blockquote p:first-child { margin-top: 0; }
cite {
    font-style: italic;
    font-weight: bold;
}

kbd,code,samp,pre,var { font-family: monospace; font-size: 1rem; font-weight: normal; }
code, pre {
    background: var(--tertiary-color);
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem 0.125rem;
    position: relative;
    top: -0.125rem;
}
code pre , pre code { padding: 0; }



/* Elements */
hr {
    background: var(--text-color);
    border: 0;
    height: 1px;
    margin: 4rem 0;
}

img { max-width: 100%; }

figure {
    border: 1px solid var(--primary-color);
    display: inline-block;
    padding: 1rem;
    width: auto;
}
figure img { margin: 0; }
figure figcaption { font-size: 80%; }

ul, ol { margin: 2rem 0; padding: 0 0 0 2rem; }
li > ul, li > ol { margin: 1rem 0; }

dl dd { padding-left: 2rem; }

table {
    border: 2px solid white;
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
}
table caption { margin: 2rem 0; }
table thead, table tfoot { text-align: left; }
table tbody { font-size: 1rem; text-align: left; }
table tr { border-bottom: 2px solid white; }
table tbody tr:nth-child(even) { background: var(--tertiary-color); }
table th { background: white; color: var(--primary-color); font-size: 1rem; font-weight: bold; text-transform: uppercase; }
table th, table td { padding: 1rem; }
table th:not(last-of-type), table td:not(last-of-type) { border-right: 2px solid white; }

input { border: 1px solid var(--text-color); padding: 0.8rem; }
input:focus, input:active { background-color: var(--secondary-color); border-color: var(--link-color); }



/* Mobile Styling */
@media screen and (max-width: 60rem) {
    body {
        font: var(--mobile-font-size) 'Fabrikat',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto, Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji", "Segoe UI Symbol"
    }
    table { table-layout: auto; }
}


/* Logo */
header > #logo {
    border-bottom: 0;
}
header > #logo > img {
    height: auto;
    width: 180px;
}