/* CSS RESET */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
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;
}



/* Set box-sizing globally to handle padding and border widths */
*,
*:after,
*:before {
  box-sizing: border-box;
}

/* Rainbow Styles */
#github {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: .5em;
    border-radius: 100px;
    background: linear-gradient(230deg, #ffbfc5, #ffffff, #a8d1e7);
    background-size: 600% 600%;
    -webkit-animation: AnimationName 15s ease infinite;
    -moz-animation: AnimationName 15s ease infinite;
    animation: AnimationName 15s ease infinite;
    outline: 4px solid #ebebeb;
}

#github img{
    height: 2em;
}

@media only screen and (max-width: 600px) {
    #github{
        padding: 5px;
        top: 2px;
        right: 5px;
    }

    #github img{
        height: 2em;
    }

  }

#github:hover{    
    border:5px solid #B3DBD8;
}

@-webkit-keyframes AnimationName {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}
@-moz-keyframes AnimationName {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}
@keyframes AnimationName {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}

body{
    font-family: 'Vollkorn', serif;
    background-color: #fdf4e2;
    padding: 1px 5vw 5vw 5vw;
    margin: auto;
    text-align: center;
    padding: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

h1{
    color: #fff024;
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: .5em;
    font-synthesis: style;
}

h2{
    font-weight: 400;
    margin-bottom: .5em;
}

li{
    list-style: none;
    padding: 0em 0em 3em 0em;
}

li a{
    color: #006440;
    display: inline;
    font-size: 2rem;
    margin-bottom: .5em;
    text-decoration: underline;
    text-decoration-style:dotted;
    text-underline-offset: .1ch;
}

.inline-link{
    color: black;
    font-size: 1em;
    text-decoration: underline;
    text-decoration-style: solid;
    display: inline;
}

.inline-link:hover{
    color: #006440;
}

li p{
    font-size: 1.5em;
}

@media only screen and (max-width: 600px) {
    body{
        width: 95vw;
    }

    h1{
        font-size: 2em;
    }    
  }

  @media only screen and (min-width:600px) {
      .header-linebreak{
          display: none;
      }
  }