/* import pixel font */
@font-face {
  font-family: "Pixelated MS Sans Serif";
  src: url(https://unpkg.com/98.css@0.1.16/dist/ms_sans_serif.woff)
    format("woff");
  src: url(https://unpkg.com/98.css@0.1.16/dist/ms_sans_serif.woff2)
    format("woff2");
  font-weight: 400;
  font-style: normal;
}

/* ermmm global stuff ig */
* {
  box-sizing: border-box;
  image-rendering: pixelated;
  font-family: "Pixelated MS Sans Serif", Arial;
  color: #dadada;
}

/* yes */
body {
  background-image: url(images/nexus.png);
  background-position: top;
  background-size: cover;
}

/* you get the gist */
header {
  margin-bottom: 1vw;
}

/* title image */
header img {
  width: 696px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 100;
  font-style: italic;
}
/* h1 doesnt actually show up but i put it here for semantic html accessibility reasons real */
h1 {
  font-size: 3vw;
  margin: 0;
  opacity: 0;
}

/* ok */
p {
  padding: 0px 15%;
}

/* styling links */
a {
  color: aqua;
}

a:hover {
  text-shadow: 0 0 10px aqua;
}

a:active {
  color: #459fff;
  text-shadow: 0 0 10px #459fff;
}

/* gallery style */

.gallery {
  width: 100%;
  margin: 20px 0px;
}

.gallery img {
  width: 20%;
  margin: 10px;
}

/* social media links style */
.links a {
  text-decoration: none;
  font-size: 50px;
  margin: 15px;
}

.links img:hover {
  filter: drop-shadow(0 0 10px aqua);
}

.links img:active {
  filter: drop-shadow(0 0 10px #459fff);
}

/* style footer text */
footer {
  margin-bottom: 30px;
}

footer p {
  font-style: italic;
  opacity: 0.75;
}

/* MEDIA QUERIES EWWWWWWWWWWWWWWWW */
@media only screen and (max-width: 1000px) {
  header img {
    width: 464px;
  }

  .gallery img {
    width: 40%;
  }
}

@media only screen and (max-width: 600px) {
  header img {
    width: 90%;
  }
}

.play {
  font-size: 50px;
  font-weight: bold;
  text-decoration: underline;

}
