@font-face {
  font-family: "astloch-regular";
  src: url("fonts/astloch-regular-webfont.woff2") format("woff2"),
    url("fonts/astloch-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  background-image: url();
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: black;
}

main {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

h1 {
  font-size: 55px;
  font-family: "astloch-regular";
}

h1 a {
  text-decoration: none;
  color: white;
}

h2 {
  font-family: helvetica;
  text-decoration: none;
  font-size: 20px;
  color: white;
}

a {
  color: white;
  text-decoration: none;
}

#one {
  grid-area: 1/2/1/2;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#one img {
  filter: grayscale(100%);
}

#one img:hover {
  filter: grayscale(0%);
}

.container {
  display: grid;
  text-align: center;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  margin-top: 50px;
}

.grid-item {
  padding: 5px;
}

#hide {
  display: none;
}

#bug:hover + #hide {
  display: block;
  color:white;
}

.button {
  width: 88px;
  font-size: 10px;
  background-color: white;
  color: black;
  height: 21px;
  margin-bottom: 10px;
}


@media only screen and (max-width: 1080px) {
  .container {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  #one {
    grid-area: 2/1/2/1;
  }
}
