@import url('/root.css');

/* 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." */

html, body {
	background-color: var(--cl-k);
	font-family: 'Monogram', "Lucida Console", monospace;
	font-size: 16pt;
	color: var(--cl-w);
}

.content-module {
	width: 850px;
}

#main {
	display: flex;
	font-family: 'Monogram', "Lucida Console", monospace;
	flex-direction: row;
	align-items: flex-start;
	justify-content: center;
	margin-top: 60px;
	margin-bottom: 96px;
	flex-wrap: nowrap;
}

#content {
	width: 884px;
	background-color: var(--cl-plum);
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: center;
	z-index: 2;
	
	border: 3px solid;
	border-color: var(--cl-gr);
	
}

#mp-start {
  display: grid;
  grid-template-columns: 10% 10% 10% 10% 10% 10% 10% 10% 10% 10%;
  grid-template-rows: 85px 85px 85px 85px 85px;
  height: 510px;
  margin-top: 15px;
  margin-bottom: 15px;
  background-color: black;
  /*background-image: url('/img/PCBG.png');*/
  padding: 5px;

  text-align: left; 
}

.merge-grid{
   grid-column: span 4;
   padding-top: 10px;
   padding-left:20px;
   padding-bottom:10px;
}

#mp-buttonscroll{
}

h1{
  font-family: 'BoldPixel', 'Lucida Console', monospace;
  line-height: 10%;
  margin-bottom: 5px;
}

p {
  margin-top: 10px;
}



/*credit for the marquee to https://punkymonky.neocities.org/ thankuuu <3*/

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

.buttons-n-blinkers {
  overflow: hidden;
  position: relative;
  width: 850px;
}

.buttons-n-blinkers > div {
  animation: marquee 7s linear infinite;
  animation-play-state: paused;
  animation-delay: -2s; /* This MUST be -duration/2 */
  width: 100%;
  min-width: fit-content;
  text-wrap: nowrap;
}

.buttons-n-blinkers > div.follower {
  position: absolute;
  top: 0;
  animation-delay: -0s;
}
 
.buttons-n-blinkers > div.play {
  animation-play-state: running;
}

.buttons-n-blinkers:hover > div.play {
  animation-play-state: paused;
}

.icon{
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  /*height: 75%;*/
  /*width: 75%;*/
}
