/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: rgba(3, 4, 18, 0.95);
  color: rgba(64, 64, 74, 1);
  font-family: 'LibertinusMonoMono';
}

.main {
  display: flex;
  justify-content: center; 
  align-items: center;
  position: relative;
}

.container {
  display: flex;
}

.outline {
  position: absolute;
  left: 50%;
  height: 100%;
  width: 75%;
  transform: translateX(-50%);
  clip-path: inset(0px 250px 0px 250px); /* top right bottom left */
}

.inner { flex: 2; justify-content: center; overflow: hidden;}

.outer-left { outline: 2px solid red; flex: 1;}

.outer-right { outline: 2px solid red; flex: 1;}

.consumeBox { outline: 2px solid pink; margin: 0 auto; position: relative; overflow: hidden; box-shadow: 0 0 10px rgba(255, 204, 0, 0.80);}

.header1 { 
  color: rgba(255, 204, 0, 0.80);
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.80);
  font-size: 40px;
}

.scroll-left {
  transform: translateX(750px);
  animation-name: scroll-left;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes scroll-left {
    0% {
      transform: translateX(750px);
    }
    100% {
      transform: translateX(-100px);
    }
}

.scroll-right {
  transform: translateX(-100px);
  animation-name: scroll-right;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes scroll-right {
    0% {
      transform: translateX(-100px);
    }
    100% {
      transform: translateX(750px);
    }
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(16, 2fr);
  grid-template-rows: repeat(16, 2fr);
  width: 75%;
  height: 25vw; /* scuffed */
  outline: 2px solid yellow;
  margin: 0 auto; /* horizontal centering */
}

.item {
  outline: 2px solid pink;
  background-color: var(--bg-color, rgba(3, 4, 18, 0.95));
}



      

