@charset "UTF-8";

/* We begin with Eric Meyer's CSS 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

@font-face {
  font-family: 'Inconsolata';
  src: url('Inconsolata.otf');
  }

.navbar {
   position: fixed;
   bottom: 5%;
     left: 2%;
   width: 100%;
}

.navbar span {
  display: block;
  font-size: 1em;
  color: black;
  text-decoration: none;
}

.navbar a, a:hover, a:focus, a:active {
  text-decoration: none;
  color: inherit;
}

.navbar a {
  text-decoration: none;
}

.navbar a:hover {
  text-decoration: underline; 
  color: black;
}

.navbar a.active {
  color: red;
  text-decoration: none; 
}

h1 {font-family: Inconsolata;
    font-size: 1.5em;
  }

h2 {font-family: Inconsolata;
    font-size: 0.75em;
    padding-bottom: 2em;
  }

body { font-family: Inconsolata;
  font-size: 50%;
  }

/* To avoid flash of unstyled content */
html {
    visibility: visible;
    opacity: 1;
}

@media screen and (min-width: 690px) {
h1 {font-family: Inconsolata;
    font-size: 1.5em;
  }

h2 {font-family: Inconsolata;
    font-size: .75em;
    padding-bottom: 2em;
  }
body { font-family: Inconsolata;
  font-size: 75%;
  }

/* To avoid flash of unstyled content */
html {
    visibility: visible;
    opacity: 1;
}
}

@media screen and (min-width: 946px) {
h1 {font-family: Inconsolata;
    font-size: 1.5em;
  }

h2 {font-family: Inconsolata;
    font-size: 0.75em;
    padding-bottom: 2em;
  }
body { font-family: Inconsolata;
  font-size: 100%;
  }

/* To avoid flash of unstyled content */
html {
    visibility: visible;
    opacity: 1;
}
}

@media screen and (min-width: 1178px) {
h1 {font-family: Inconsolata;
    font-size: 1.5em;
  }

h2 {font-family: Inconsolata;
    font-size: 0.75em;
    padding-bottom: 2em;
  }
body { font-family: Inconsolata;
  font-size: 125%;
  }

/* To avoid flash of unstyled content */
html {
    visibility: visible;
    opacity: 1;
}
}

@media screen and (min-width: 1448px) {
h1 {font-family: Inconsolata;
    font-size: 1.5em;
  }
h2 {font-family: Inconsolata;
    font-size: 0.75em;
    padding-bottom: 2em;
  }
body { font-family: Inconsolata;
  font-size: 150%;
  }

/* To avoid flash of unstyled content */
html {
    visibility: visible;
    opacity: 1;
}
}

@media screen and (min-width: 1642px) {

h1 {font-family: Inconsolata;
    font-size: 1.5em;
  }

h2 {font-family: Inconsolata;
    font-size: 0.75em;
    padding-bottom: 2em;
  }
body { font-family: Inconsolata;
  font-size: 175%;
  }

/* To avoid flash of unstyled content */
html {
    visibility: visible;
    opacity: 1;
}
}


/* animation */

@supports (animation-delay: 12s) {
    #slideset {height: 21em; position: relative}
    #slideset > * {
         visibility: hidden; 
         animation: 24s autoplay1 infinite;
      position: absolute; top: 0;
         }
    #slideset > *:nth-child(1) {animation-delay: 0s}
    #slideset > *:nth-child(2) {animation-delay: 12s}
    @keyframes autoplay1 {
      0% {visibility: visible}
      50.0% {visibility: hidden}
    }
}


