* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url("forest.png");
  background-position: center;
  background-attachment: fixed;
  width: 1000px;
  margin: 0 auto;
}

body:before {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  background: url("forest.png") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.warning {
  display: grid;
  color: #ddd;
  font-size: 30px;
  align-items: center;
  height: 100%;
  grid-template-rows: 1fr;
}

.warning-text {
  border: 5px solid #ddd;
  background-color: #222;
  padding: 20px;
}

.warning-header {
  color: rgb(189, 0, 0);
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  /* margin-bottom: 100px; */
  font-size: 60px;
}

.warning ul {
  list-style: square;
}

.warning li {
  margin-left: 60px;
  font-size: 24px;
  width: 75%;
}

.warning a:link,
a:active {
  color: #ddd;
}

.warning a:hover,
a:visited {
  color: #ddd;
}

.linktext {
  text-decoration: underline;
  cursor: pointer;
  font-weight: bold;
}

nav {
  position: fixed;
  top: 0;
  display: flex;
  /* justify-content: space-around; */
  background-color: #222222bb;
  border: #ddd 6px solid;
  font-size: 30px;
  text-transform: uppercase;
  /* width: 1000px; */
}

.download-disabled {
  border-right: #ddd 3px solid;
  padding: 10px 25px;
  display: inline-block;
  color: #777;
}

nav a {
  border-right: #ddd 3px solid;
  padding: 10px 25px;
  display: inline-block;
  transition: all 0.3s;
}

nav a:last-child {
  border-right: none;
}

a:link,
a:visited {
  color: #ddd;
  text-decoration: none;
}

nav a:hover,
nav a:active {
  background-color: #ddd;
  color: #222;
}

.main-page {
  display: none;
  text-align: center;
  color: #ddd;
  font-size: 30px;
  grid-template-columns: 1fr 1fr;
  row-gap: 50px;
  align-items: center;
  justify-items: center;
  font-family: "PT Serif", serif;
  flex-shrink: 1;
}

.title {
  margin-top: 200px;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: black;
  grid-column: 1/-1;
  width: 949px;
}

.tagline {
  font-style: italic;
  font-size: 35px;
  margin-top: 40px;
  grid-column: 1/-1;
}

.button,
.button:link,
.button:visited {
  display: inline-block;
  font-family: inherit;
  font-size: 48px;
  text-decoration: none;
  padding: 16px 24px;
  border: solid 5px #ddd;
  border-radius: 10px;
  background-color: #ddd;
  color: #222;
  transition: all 0.3s;
}

.button:hover,
.button:active {
  background-color: #0000;
  color: #ddd;
}

.main-page .play-now {
  grid-column: 1/-1;
  padding: 24px 64px;
}

.header {
  font-size: 70px;
  text-decoration: underline 5px;
  grid-column: 1/-1;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: black 5px 0px 5px;
}

a.anchor {
  display: block;
  position: relative;
  top: -40px;
  visibility: hidden;
}

.profile-image img {
  vertical-align: middle;
  /* width: 100%; */
  /* max-width: 100%; */
  margin: auto;
}

.subheader {
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 10px;
  text-shadow: 5px 0px 5px black;
}

.profile-description {
  border: #ddd 5px solid;
  /* color: #ddd; */
  /* font-family: monospace; */
  background-color: #222;
  font-size: 22px;
  padding: 10px;
  width: 75%;
  /* justify-self: start; */
  line-height: 1.4;
}

.profile-scar {
  display: grid;
  justify-items: center;
}

.profile-tail {
  display: grid;
  justify-items: center;
}

.image-scar {
  justify-self: center;
  background-color: #ffffff80;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
  border: 5px solid #000;
  height: 700px;
}

.image-tail {
  justify-self: center;
  background-color: #ffffff80;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
  border: 5px solid #000;
  height: 560px;
}

h5 {
  font-size: 30px;
  font-style: italic;
  color: #bbb;
}

.thumbnail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  grid-column: 1/-1;
  justify-self: center;
}

.thumbnail {
  border: 10px rgb(192, 192, 192) double;
  width: 100%;
}

.thumbnail-link:hover {
  cursor: pointer;
}

.screenshot-background {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #000000bb;
}

.full-screenshot {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 85%;
  max-width: 100%;
}

.screenshot-disclaimer {
  grid-column: 1 / -1;
  font-size: 16px;
}

.credits-box {
  grid-column: 1/-1;
  background-color: #222222bb;
  justify-self: center;
  padding: 30px 100px;
  line-height: 75px;
  border: #ddd 10px double;
}

.credits-name {
  font-size: 50px;
  margin-bottom: 50px;
}

.credits-name:last-child {
  margin-bottom: 0;
}

.game-stats {
  line-height: 50px;
  text-align: left;
  background-color: #222222bb;
  padding: 40px 75px;
  border: #ddd 5px solid;
  display: flex;
  grid-column: 1/-1;
  justify-content: center;
  gap: 20px;
}

.stat-header {
  text-transform: uppercase;
  font-weight: bold;
}

.pointer-cursor {
  cursor: pointer;
}

.pointer-cursor:hover {
  text-decoration: underline;
}

.content-descriptor-box {
  background-color: #222222bb;
  padding: 40px 100px 40px 100px;
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0px;
  width: 80%;
}

.content-descriptor-instruction {
  margin-top: 20px;
  font-size: 20px;
}

#content-divider {
  display: none;
  margin-bottom: 20px;
}

.content-descriptor-list {
  display: none;
  list-style: none;
  /* margin: 0% 15%; */
}

.content-header {
  font-size: 36px;
  margin-bottom: 20px;
  font-style: italic;
}

.content-description {
  font-size: 20px;
  display: none;
  margin-bottom: 40px;
  font-style: italic;
}

.content-description-last {
  margin-bottom: 0px;
}

.links-container {
  display: grid;
  align-items: center;
  justify-items: center;
}

.play-scars {
  display: flex;
  flex-direction: column;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.download-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.download-for {
  font-size: 32px;
}

.download-platform {
  text-transform: uppercase;
}

.download-note {
  margin-bottom: 50px;
}

.play-now,
.play-in-browser {
  text-transform: uppercase;
}

footer {
  font-size: 16px;
  margin-top: 100px;
  grid-column: 1/-1;
}

/* DEBUG COLORS */
/* .profile-container {
  background-color: violet;
}

.profile-image,
.profile-description {
  background-color: orange;
}

.profile-image img {
  background-color: aqua;
} */
