

:root {
  color-scheme: light dark;
  box-sizing: border-box;
  font-family: "Droid Sans", serif;
}

a, a:visited, a:hover {
    color: inherit; 
    text-shadow: 1px 1px 0px inherit;
    text-decoration: underline inherit dotted; 
}

@media (prefers-color-scheme: light) {
    :root {
	color: black;
	background-color: #e0e0e0;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
	color: #E0E0E0;
	background-color: black; 
    }
}


body {
  display: block;
  margin: 0px;
}

h1,h2,h3,h4 {
  font-family: "Roboto", sans-serif; 
  font-weight: normal;
}

#content {
  margin: 10px; 
}

section {
  padding: 10px 100px 10px 100px; 
}

.clearfix {
  &:after {
    content: "";
    display: table;
    clear: both;
  }
}

nav {
    padding: 2px 20px 2px 20px;
    position: relative; 
    display: flex; 
    font-family: "Roboto", sans-serif; 
    background-color: white;
    color: black;
    left: 0px;
    top: 0px;
    border-bottom: 1px #101010; 
}

nav a, nav a:visited, nav a:hover {
    color: black;
    display: block;
    text-decoration: none;
    text-shadow: none; 
}
