html {
  margin:0px;
  padding: 0px;
}

body {
  /*font: Inter;*/
  font-family: 'Kite One', Inter, sans-serif;
  color: #EDFFEC;
  text-align: center;
  font-size: 100%;
  background-image: url("scrolling-background-test-1920.png");
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a.linkhide {
    display: none;
}

.header {
  text-align: center;
}

.footer {
  text-align: center;
  font-size: .75em;
  flex: 0 0 50px
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  border-color: linear-gradient(to right, red,orange,yellow,green,blue,indigo,violet);
  border-style: dotted;
  border-width: 4px;
  /*border: 4 linear-gradient(to right, red,orange,yellow,green,blue,indigo,violet);*/
  border-radius: 12px;
  /*background-color: green;*/
  color: white;
  text-align: center;
  margin-top: auto;
  padding: 10px;
}

p {
  color: #EDFFEC;
  /*font-size: 0.875em; /* 14px/16=0.875em */
}

p.emphasiscontent::first-letter {
  font-size: 150%;
  /*color: #61E786;*/
  color: #FFFFFF;
  font-style: oblique 10deg;
  font-family: serif;
  /*margin-right: 10px;*/
  /*box-shadow: 2px 2px 2px 1px rgba(0, 0, 255, .2);*/
  /*text-shadow: 1px 1px 2px pink;*/
  text-shadow: 1px 1px 2px #5BCEFA, 0 0 1em #F5A9B8, 0 0 0.2em #FFFFFF;
}

p.introp {
  color: inherit;
  font-size: 1.15em;
}

a {
  color: inherit;
  text-decoration: none;
}

a.fancy, a.fancy:visited {
    text-decoration: none;
    background-image:
      linear-gradient(to right, violet, indigo, blue, green, yellow, orange, red
      ),
      linear-gradient(to left, violet, indigo, blue, green, yellow, orange, red
      );
    background-size: 0% 1px, 100% 1px;
    background-position: 0 bottom, 0 bottom;
    transition: background-size 0.3s ease-in-out;
    background-repeat: no-repeat;
    padding-bottom: 1px;
    border-bottom: 1px solid transparent;
}
a.fancy:hover {
    background-size: 100% 2px;
}

@supports (-ms-ime-align:auto) {
    a.fancy, a.fancy:visited {
        background-image:
            linear-gradient(#2ed392, #2ed392),
            linear-gradient(#d8dce9, #d8dce9);
        background-size: 0% 2px, 100% 2px;
        padding-bottom: 2px;
    }
    a.fancy:hover {
        background-size: 100% 2px;
    }
}

/* Presentational Styles */
body {
  display: grid;
  font-family: 'Kite One', Inter, sans-serif;
  /*font-size: 24px;*/
  /*font-weight: 700;*/
  /*height: 100vh;*/
  place-items: center;
}

h1 {
  /*font-size: 2.5em; /* 40px/16=2.5em */
}

h2 {
  /*font-size: 1.875em; /* 30px/16=1.875em */
  color: #61E786;
}
h3 {
  /* font-size: 1em;*/
  color: #559571;
  /*border: 1mm ridge rgba(170, 50, 220, .6);*/
}
  
.centered {
    margin: 0 auto;
    padding: 0 1em;
}

/*--------------------------------------------------------------
Header styles minus menu
--------------------------------------------------------------*/

.masthead {
    /*background: #fff;*/

  	box-shadow: 3px 3px 8px hsl(0, 0%, 70%);
}

.site-title {
    margin: 0 0 1em;
    padding: 1em 0;
    font-size: 2em;
    font-weight: 300;
    text-align: center;
    color: black;
    
}

/*@media screen and (min-width: 44.44em) {
    .site-title {
        font-size: 2em;
    }
}*/

/*@media screen and (min-width: 50em) {
    .site-title {
        font-size: 2.5em;
    }
}*/

.site-title a {
    color: hsl(5, 45%, 95%);
    text-decoration: none;
}

.site-title a:hover {
    text-decoration: underline;
}

/* Card Based Layout - Base styles */
body {
  /* background: #48435C; */
  line-height: 1.5;
}

li {
  text-align: center;
}

.site-title {
	color: white;
}

.card {
	background: white;
	margin-bottom: 2em;
}

.card a {
	color: black;
	text-decoration: none;
}

.card a:hover {
	box-shadow: 3px 3px 8px hsl(0, 0%, 70%);
}

.card-content {
	padding: 1.4em;
}

.card-content h2 {
	margin-top: 0;
	margin-bottom: .5em;
	font-weight: normal;
}

.card-content p {
	font-size: 95%;
}

img {
  width: 100%;
  height: auto;
}

/* If the screen size is 601px wide or more, set the font-size of <div> to 80px */
@media screen and (min-width: 601px) {
  body {
    /*font-size: 28px;*/
  }
}

/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 600px) {
  body {
    /*font-size: 15px;*/
  }
}