@charset "utf-8";

h1 {
	font-size: 40px;
	font-family: sculpin, sans-serif;
}

h2 {
	font-size: 30px;
	font-weight: normal;
	font-family: sculpin, sans-serif;
}

h3 {
	font-size: 20px;
	font-weight: normal;
	font-family: sculpin, sans-serif;
}

body {
  font-weight: normal;
  font-family: sculpin, sans-serif;
}

@media (prefers-color-scheme: dark) {
  body {
    color: #eee;
    background: #121212;
  }

  a {
    color: #809fff;
  }
}

@media (prefers-color-scheme: light) {
    body {
    color: #eee;
    background: #121212;
  }

  a {
    color: #809fff;
  }
/* fuck you dawg dark mode 4eva */
}

/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: rgb(140, 0, 255);
  color: rgb(0, 0, 0);
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #ff0000;
  color: white;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: red;
  color: white;
  text-align: center;
}