/* Colors */
:root {
  --blurple: rgb(74, 86, 252);
  --greyWhite: rgb(214, 203, 203);
  --borderBlurple: hsl(230, 93%, 72%);
}

/* Reset + Base */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

body {
  background: linear-gradient(-45deg,#0382cc, #13cb75);
  display: flex;
  flex-direction: column;
  font-family: Consolas, monospace;
  color: var(--greyWhite);
  overflow-x: hidden;
}

/* Navigation Bar */
nav {
  display: flex;
  justify-content: center;
}
.navLink {
  font-size: clamp(10px, 2vw, 13px);
  color: var(--blurple);
  text-decoration: none;

  margin-top: clamp(2px, 1vw, 5px);
  margin-bottom: clamp(2px, 1vw, 5px);
  gap: clamp(7px, 2vw, 15px);
}

/* Typography */
h1 {
  font-size: clamp(32px, 6vw, 70px);
  text-align: center;
  text-decoration: underline;
  margin: 2px;
  font-family: minecraft, Consolas, monospace;
}

h2, .playerBoxInfo {
  font-size: clamp(20px, 2vw, 30px);
}

h3 {
  font-size: clamp(18px, 3vw, 30px);
  margin: 2px;
}

h4 {
  font-size: clamp(14px, 2vw, 20px);
  line-height: clamp(20px, 2vw, 70px);
  margin: auto;
}

h5 {
  font-size: clamp(12px, 5vw, 20px);
  line-height: clamp(30px, 4vw, 40px);
  margin: auto;
}

i, h1, h3 {
  color: var(--blurple);
}

ul {
  margin-top: 0px;
}

li {
  font-size: clamp(14px, 2vw, 20px);
  line-height: clamp(20px, 2vw, 70px);
}

a {
  text-decoration: none;
  font-size: 0;
}

i {
  margin-right: 5px;
  margin-left: 5px;
}

strong {
  font-weight: bold;
}

summary {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: bold;
  color: var(--greyWhite);
  cursor: pointer;
  list-style-position: outside;
  padding-left: 0.5rem;
}

/* Media */
img, video {
  max-width: 100%;
  height: auto;
}

figcaption {
  color: rgb(0, 0, 0);
  text-align: center;
  margin-bottom: 0px;
  padding-bottom: 0;
  gap: 0;

  font-weight: bold;
  font-size: clamp(10px, 1vw, 50px)
}