body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5em;
  background: rgb(241, 240, 236);
  color: black;
}

#main-copy {
  margin-left: 75px;
  max-width: 85%;
}

#main-copy img {
  border: darkgray 2px solid;
}

#main-copy img:hover {
  border: purple 2px solid;
}

#media {
  color: slategrey;
  max-width: 512px;
  background-color: aliceblue;
  padding: 20px;
  float: left;
  margin-right: 25px;
  border: gray 1px solid;
}

#media:hover {
  background-color: rgb(225, 240, 255);
}

hr {
  border: gray 1px solid;
  margin: 0px;
}

#media img {
  max-width: 512px;
}

#media a {
  color: blue;
  font-weight: bold;
  font-style: normal;
}

#media a:hover {
  color: white;
}

.main-header {
  color: darkslategray;
  font-size: 3em;
  font-family: serif;
  margin-left: 35px;
  display: inline-block;
  font-style: italic;
  border: darkgray 1px solid;
  padding: 8px;
}

.main-header:hover {
  background: rgb(247, 246, 244);
}

.main-tagline {
  display: inline;
  color: darkgray;
  border-bottom: 1px darkslateblue solid;
  margin-left: 0px;
}

#navbar a {
  color: blue;
  text-decoration: none;
}

#navbar a:hover {
  color: white;
  background: blue;
}

#main-copy h1 {
  border-bottom: gray 1px solid;
}

code b {
  color: gray;
}

ul {
  list-style: none;
}

li {
  padding: 10px;
  padding-left: 8px;
}

li:before {
  content: "->";
  display: inline-block;
  font-family: monospace;
  width: 1.3em;
}

ul a {
  color: darkmagenta;
}

ul a:hover {
  color: lightcoral;
}

ul a:active {
  background: coral;
  color: antiquewhite;
}

a {
  color: red;
}

a:hover {
  color: white;
  background: blue;
}

pre code {
  border: 1px solid black;
}

.tip {
  border: double 2px darkslategray;
  cursor: help;
  padding: 2px;
}

.tip:hover {
  background: rgb(214, 211, 201);
}

::-moz-selection {
  color: rgb(241, 240, 236);
  background: black;
}

/* I insulted the hell out of ChatGPT to get this code btw :3 */
.poland {
  position: fixed;
  bottom: 0;
  right: 0;
  max-width: 100%;
  /* Ensure the image doesn't exceed the viewport width */
  max-height: 100%;
  /* Ensure the image doesn't exceed the viewport height */
  opacity: 0.2;
  /* Adjust the opacity as needed */
  z-index: 999;
  /* Adjust the z-index to ensure it's on top of other elements */
  border: 1px solid darkslategray;
}