:root {
  --bg:    	  royalblue;
  --text:	  white;
  --link:         white;
  --link-visited  white;
}

body {
  margin-top: 0.5%;
  margin-bottom: 0.5%;
  padding: 25px 10px 20px 10px;
  letter-spacing: 1px;
  background-color: var(--bg);
  color: var(--text);
  font-size: 15px;
}

body {
  font-family: sans-serif; 

}

h1, h2 {
  margin: 0;
}

header {
  text-align: center;
  margin-bottom: 25px;
}

h1 {
  font-size: 35px;
  margin-bottom: 10px;
  line-height: 1.05em;
}

hr {
  border: none;
  border-top: 1px solid var(--text);
  height: 1px;
  width: 80%;
}

h2 {
  margin-top: 27.5px;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 0.9em;
}

h3 {
  margin-top: 1.75em;
  font-size: 15px;
}

a {
  text-decoration: underline;
}

a:link {
  font-weight: 0;
  color: var(--link);
}

a:link h1, a:visited h1 {
  color: var(--text);
}

a:visited {
  color: var(--link-visited);
}

a:hover, a:active {
/*  color: var(--text);*/
}

p, li, pre, menu {
/*  font-family: serif; */
  font-size: 14px;
  line-height: 20px;
}

menu {
  padding: 0;
}

ul, ol {
  padding: 0;
  margin-left: 25px;
}

ul {
  list-style-type: lower-roman;
}

li {
  padding-left: 5px;
}

li a {
  color: var(--text);
}

img {
  max-width: 100%;
  height: auto;
  margin: 0.75em 0;
}

footer {
  font-size: 11.5px;
  text-align: center;
  padding-top: 15px;
}

::-moz-selection {
  background: var(--text);
  color: var(--bg);
}

::selection {
  background: var(--text);
  color: var(--bg);
}


@media only screen and (min-width: 600px) {
  
  img {   
    clear: both;
  }

}


@media only screen and (min-width: 1000px) {

  body {
    margin-left: 12.5%;
    margin-right: 12.5%;
    padding-top: 1.25em;
    padding-bottom: 2em;
  }
  
  h1 {
    font-size: 45px;
  }
  
  h2 { 
    margin-bottom: 25px;
  }
    
  p, pre, ul, ol, li, menu, h3 {
    font-size: 17px;
  }

  hr, hr.right {
    margin-top: 15px;
    margin-bottom: 10px;
  }
  
}

