@import url(https://fonts.googleapis.com/css?family=Armata&subset=latin,latin-ext);
@import url(https://fonts.googleapis.com/css?family=Inconsolata:400,700&subset=latin,latin-ext);

/* Slide layout
   .sws-{header,inner-canvas,footer} are in
   a .sws-canvas which fills the whole viewport vertically
   and is horizontally centered.
   The .sws-canvas has an aspect ratio of 4/3 or 16/9
*/
/* No header in this theme */
.sws-header {
    display: none;
}

/* Title of the slide */
h1 {
    color: #f14a29;
    font-size: 5vh;
    text-align:center;
}
/* The inner canvas and content */
.sws-inner-canvas {
    top: 0vh;
    height: 85vh;
}
.sws-content {
    padding: 3vh;
}

.sws-footer {
    top: 95vh;
    height: 5vh;
    text-align: right;
}

.sws-slide-num-sep:after {
    content: "/";
}

body {
    font-family: 'Armata',sans-serif;
    font-size: 3vh;
    background-color: black;
    color: white;
}

code, pre, tt {
    font-family: 'Inconsolata', monospace;
}
code {
    white-space: pre;
}

ul {
    list-style-type: square;
}



em { color: #f14a29;
     font-style:normal;
   }

a {
    color: #1092bf;
    text-decoration:none;
    font-style:normal;
}

.centerbox {
    text-align: center;
}