/* shoutout to my software teacher who wouldnt shut up about w3schools */

/* Speedwagon's Stuff */
body {
  font-family: Arial, Helvetica, sans-serif, times;
  font-size: 24px;
  color: white;
  background-color: black;
  background-image: url("/images/netherrack.png");
  padding-top: 30px;
  text-shadow: 2px 2px black;
}

a {
  text-decoration: none;
  color: yellow;
}

.descriptionbox {
  background-color: #500000;
  font-size:20px;
  color: white;
}

#footer {
  clear: both;
}

.window {
  background: black;
  border: 5px;
  border-radius: 10px;
  max-width: 90%;
  width: 800px;
  text-align: center;
  margin: auto;
  padding: 1px;
}

.trans {
  background: rgba(0,0,0,0.69);
}

/* Light mode... why would you do this??? */
.light-mode {
  background-color: white;
  background-image: url("/images/endstone.png");
  color: black;
  text-shadow: 2px 2px white;
}

.light-mode a {
  color: red;
}

.light-mode .window {
  color: white;
}

.pixels {
  image-rendering: pixelated;
}

table, th, td {
  border: 1px solid gray;
  border-collapse: collapse;
}

table {
  margin: 15px;
}

.animeposter {
  max-width: 50vw;
}

list, ul, ol {
  margin-top: 0px;
  margin-bottom: 5px;
  color: white;
}

* {
  box-sizing: border-box;
}

.whitelink a {
  color: white;
}

.whitelink a:hover {
  text-decoration: underline;
}

/* Float four columns side by side */
.column {
  float: left;
  width: 25%;
  padding: 0 10px;
}

/* Remove extra left and right margins, due to padding in columns */
.row {margin: 0 -5px;}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Style the counter cards */
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* this adds the "card" effect */
  padding: 16px;
  text-align: center;
  background-color: black;
}

/* Responsive columns - one column layout (vertical) on small screens */
@media screen and (max-width: 800px) {
  .column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}

img .pixels {
  image-rendering: pixelated;
}