@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%;
   position:relative;
  background-image: url(bg/mountains.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}


body::before {
 content:"";
 position:absolute;
 margin: 0;
  padding: 0;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-image: url(bg/catracoinssmaller.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index:-3;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3; 
    opacity: 0.3;
}

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

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

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

h2 {
  font-family: helvetica;
  text-decoration: none;
  font-weight:lighter;
  font-size: 18px;
  color: black;
}

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

p{
   font-family:helvetica;
    font-weight:lighter; 
}

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

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

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

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

#two img {
  filter: grayscale(100%);
  opacity:0.7;
}

#two img:hover {
  filter: grayscale(0%);
  opacity:1;
}

.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:black;
}

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

footer{
   padding-top: 100px; 
   
}

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

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