html, body {
  margin: 0;
  padding: 0;
  font-family: 'Verdana', sans-serif;
  background-color: #0d0d0d;
  color: #f2f2f2;
  height: 100%;
  z-index: -3;
  position: relative;
  overflow: scroll;
  overflow-x: hidden;
}

@keyframes fadeIn {
           0% {
               opacity: 0;
           }
           100% {
               opacity: 1;
           }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

a {
  text-decoration: none;
  color: #f2f2f2;
}

.main {
  opacity: 0;
  animation-name: fadeIn;
  animation-delay: 3s;
  animation-duration: 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  z-index: 2;
  padding: 75px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  background-color: #0d0d0d99;
  position: relative;
}

.background {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  height: 100%;
  width: 100%;
  position: fixed;
  margin: 0;
  padding: 0;
}

.background-bg {
  background: url(./assets/aerial-bg.png) no-repeat center center fixed;
  z-index: -3;
  animation-delay: 1s;
}

.background-fg {
  background: url(./assets/aerial-fg.png) no-repeat center center fixed;
  z-index: -1;
  animation-delay: 2s;
}

.title {
  margin-top: 0;
  font-size: 90px;
  font-family: 'Andale Mono', monospace;
  font-weight: bold;
  margin-bottom: 30px;
}

hr {
  z-index: -2;
  position: relative;
  opacity: 0;
  border: 3px solid #f2f2f2;
  animation-name: fadeIn;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 4s;
  box-shadow: 0 0 1px #fff, 0 0 2px #fff, 0 0 3px white, 0 0 5px #ffffff80, 0 0 6px transparent;
}

.description {
  font-family: 'Optima', 'Georgia', serif;
  font-size: 25px;
}

.snippet {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  font-family: 'Gill Sans', sans-serif;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: bolder;
}

.item-object {
  background-color: #0d0d0d80;
  padding: 25px;
  border-radius: 10px;
  width: 250px;
  height: 125px;
}

.item-title {
  font-family: 'Optima', 'Georgia', serif;
}

.header {
  font-family: 'Andale Mono', monospace;
  font-size: 35px;
  font-weight: bold;
}

.grid {
  display: grid;
  gap: 25px;
  grid-template-columns: auto auto;
  grid-template-columns: 300px 175px;
}

@media (max-width: 1000px) {
    .grid {
        grid-template-columns: auto;
    }
}

@media (max-width: 750px) {
    .main {
        padding: 25px;
    }
}
