/* color scheme should be: blue, black, silver, white, purple or green accents */
@media (prefers-color-scheme: light) {
    :root {
        --text: black;
        --heavy-accent: #696969;
        --light-accent: #d0d0d0;
        --bg-main: white;
        --bg-repo: white;
        --bg-user: white;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --text: white;
        --hover-text: black;
        --heavy-accent: #041b82;
        --light-accent: #4a5eb5;
        --bg-main: black;
	--bg-textdiv: #450061;
	--frame-textdiv: #d9e0ff;
        --bg-repo: black;
        --bg-user: black;
    }
}

:root {
	--navlink-font-size: 30px;
	--h1-font-size: 2.0em;
	--h2-font-size: 1.3em;
	--h3-font-size: 1.2em;
	--body-text-font-size: 20px;
	--navbar-float: left; 
	--navbar-text-align: block; 
}

@media (max-width: 800px) {
    :root {
	--h1-font-size: 2.5em;
	--navlink-font-size: 8vw;
	--navbar-float: none; 
	--navbar-text-align: block; 
	--body-text-font-size: 4vw;
    }
}

@media screen and (max-width: 600px) {
    :root {
	--h1-font-size: 3.0em;
	--navlink-font-size: 10vw;
	--navbar-float: none; 
	--navbar-text-align: block; 
	--body-text-font-size: 5vw;
    }
}

body .header{
  font-family: "Courier New", "Monaco","Helvetica","Papyrus";
  color: white;
}

body .content{
  text-align: center;
  font-family: "Courier New", "Monaco","Helvetica","Papyrus";
  color: white;
}

body {
  background-color: var(--bg-main);
  font-family: "Courier New", "Monaco","Helvetica","Papyrus";
  color: var(--text);
  font-size:1vw;
}

.navbar a {
  display: block;
  color: var(--text);
  text-align: center;
  padding: 14px;
  text-decoration: none;
  border-radius: 5px;
  font-size: var(--navlink-font-size);
}

.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: var(--heavy-accent);
}

.navbar li {
  float: left;
}

.navbar li a {
  display: block;
  color: var(--text);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change the color of links on mouse-over */
.navbar li a:hover:not(.active) {
  background-color: var(--light-accent);
  color: var(--hover-text);
}

.navbar a:hover:not(.active) {
  background-color: var(--light-accent);
  color: var(--hover-text);
}

/* Add a color to the active/current link */
.navbar a.active {
  background-color: var(--light-accent);
  color: var(--text);
}

.body-paragraph {
  background-color: var(--bg-textdiv);
  border-color: var(--frame-textdiv);
  border-style: solid;
  border-width: 5px;
  font-size: var(--body-text-font-size);
}

.standout-link{
  background-color: var(--bg-textdiv);
  border-color: var(--frame-textdiv);
  border-style: solid;
  border-width: 5px;
  font-size: var(--body-text-font-size);
  width: 40%;
    padding: 9px;
    text-align: center;
    margin: auto;
}

.poem {
	display: flex;
	justify-content: space-between;
}

h1, h2, a, p {
	color: var(--text);
}
h1 {
	font-size: var(--h1-font-size);
	text-align: center;
	-webkit-text-stroke: 2px black;
}
h2 {
	font-size: var(--h1-font-size);
	text-align: center;
	-webkit-text-stroke: 2px black;
}
h3 {
	font-size: var(--h3-font-size);
}
p, a {
	font-size: 1.0em;
}
ul {
	width: 300;
}

img {
	max-width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }

.container {
	width: 100%;
}

.overlay {
	position: absolute;
	top: 9.7%;
	left;0;
	opacity: 0;
	transition: .5s ease;
}

.column:hover .overlay {
  opacity: 0.5;
}

