@font-face {
  font-family: msdos;
  src: url(fonts/DOS.ttf);
}
a:link { 
  color: rgb(0, 98, 255);

  text-decoration: none; 
}
a:hover{
  color: rgb(107, 218, 255);
}
a:active{
  color: rgb(60, 187, 229);
}
a:visited{
  color: rgb(97, 51, 248);
}

body{
  font-family: msdos;
  font: 0.3em;
  background: url("img/tile.webp");
  align-content: center;
  text-align: center;
  overflow-x: hidden;
}
.body-grid{
  display: flex;
  flex-direction: column;
  align-content: center;
}
.box-outset{
  width: 43em;
  max-width:90vw;
  min-width: 50vw;
  padding: 1.0em 0.5em 0.5em;
  margin: 0.75em auto 0.1em;
  color: white;
  background-color: #819de0;
  border: 8px;
  border-style: solid solid solid solid;
  border-color: #a5beff #4b5a83 #4b5a83 #8ea6e3;
  text-align:left;
  align-self:center;
  font-size:1.2em;
}
.box-inset{
  margin: auto;
  max-width: 43em;
  color:#4b5a83;
  background-color: #a5bfff;
  border-width: 8px;
  border-style: inset solid solid inset;
  border-color: #819de0 #8ea6e3 #819de0 #819de0;
  text-align: left;
  padding: 1em 1em 1em;
  align-self: center;
}
.inset-header{
  align-self: center;
}
.hero-box{
  display:block;
  flex-direction: column;
  color: black;
  align-content: center;
  text-align: center;
  font-size: 1.7em;
  padding-top:0em;
  padding-left: 1em;
  padding-right: 1em;
  padding-bottom: 1em;
  margin: 0em 0em 0em;
  background: #ffffff;
}
.warning-inset{
  margin: auto;
  max-width: 43em;
  color:#4b5a83;
  background-color: #000000;
  border-width: 8px;
  border-style: inset solid solid inset;
  border-color: #819de0 #8ea6e3 #819de0 #819de0;
  text-align: left;
  padding: 1em 1em 1em;
  align-self: center;
}
.footer{
  font-size:0.95em;
  color: #5c70a0;
  background-color: #819de0;
  text-align:center;
  align-self:center;
}
.hero-subtitle{
  color: grey;
  font-size: 0.75em;
}
.hero-sub-warn{
  color:rgb(255, 238, 0);
  font-size: 0.75em;
  background-color:black;
  padding: 0.35em 0em 0.35em;
  margin: 0.5em 3em 0em;
  box-shadow: 5px 5px #ff82ec;
}
.hero-title{
  font-size: 1.4em;
}
.linkbar{
display:flex;
row-gap: 1em;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-around;
}
.mint-button{
  max-width:15em; 
  width:80vw;
  margin: 0.1em 0.1em 0.5em;
  color:#49743a;
  padding: 0.4em;
  white-space: nowrap;
  background-color: #b5f327;
  border: rgba(117, 205, 117, 0.368);
  border-width: 4px;
  border-style:outset;
  text-align:center;
  align-self:center;
  box-shadow: 5px 5px #49743a;
}
.mint-button:hover{
  background-color: #c3f254;
  border: rgba(160, 231, 160, 0.368);
  border-width: 4px;
  border-style:outset;
  box-shadow: 2px 2px #49743a;
}
.mint-button:active{
  background-color: #c3f254;
  border: rgba(160, 231, 160, 0.368);
  border-width: 3px;
  border-style:outset;
  box-shadow: 2px 2px #49743a;
}
.footer-button{
  font-family: msdos;
  width:20em;
  max-width: 50vw;
  margin: 0.1em 0.1em 0.5em;
  font-size: 0.9em;
  color:#4d680f;
  padding: 0.4em;
  white-space: nowrap;
  background-color: #b5f327;
  border: rgba(117, 205, 117, 0.368);
  border-width: 4px;
  border-style:outset;
  text-align:center;
  align-self:center;
}

.footer-button:hover{
  color:#4d680f;
  background-color: #c6fb4a;
  border: rgba(139, 225, 139, 0.368);
  border-width: 4px;
  border-style:outset;
}

.chan-bar {
  text-align: left;
  padding: 10px;
  background: #d6daee;
  color: white;
}
.chan-box {
  width: 44.5em;
  max-width:90vw;
  min-width: 50vw;
  margin: 0.75em auto 0.1em;
  background-color: #d6daee;
  border-style: solid;
  border-width: 5px;
  border-color: #b7bbd0 #9ea1b3 #87899a #b7bbd0; /* red top, green right, blue bottom and yellow left */
  min-height: 180px;
  align-self: center;
}
.chan-container {
  display:flex;
  grid-template-columns: 70% 30%;
  column-gap: 0em;
  row-gap: 0.5em;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top:
}
.chan-container-item {
  font-size: 1em;
  text-align: left;
  padding-bottom: 2em;
  padding-left: 10px;
  font-size: 1em;
  color: white;
  overflow: hidden;
}
.textcrawl {
  padding: 1em;
  color: #789922;
  text-align:left;
}
.blinking-cursor {
  font-weight: 10;
  font-size: 0.8em;
  color: #789922;
  padding-left: 1em;
  padding-bottom: 3em;
  animation: 4s blink step-end infinite;
}
@keyframes
"blink" {
  from, to
  color: transparent;
  50% color: #789922;
}
@-webkit-keyframes
"blink" {
  from, to
  color: transparent;
  50% color: #789922;
}
blinking {
}
.a1, .a2 {
  animation: blinking 2.0s infinite;
  color: red;
}
@keyframes blinking {



  50% {
      opacity: 0;
      color: red;
  }


}
.textcrawl {
  padding: 1em;
  color: #789922;
}

.img-container {
  display: flex;
  flex-direction: row;
  justify-content: left;
  margin: 10px;
}
  .img-container > div {
      background-color: black;
      overflow: hidden;
      font-size: 1em;
      padding-left: 10px;
      padding-right: 10px;
  }




/* Scrolling Banner */

.scrollinglogobox {
  max-width: 45.5em;
  width: 100vw;
  min-height: 128px;
  max-height: 55vw;
  overflow: hidden;
  position: relative;
  align-self: center ;
}


.scrolling {
  position: absolute;
  height: 128px;
  animation: moveSlideshow 20s linear infinite;
}
@keyframes moveSlideshow {
  100% {
      transform: translateX(-66.6666%);
  }
}
.scrollingslower {
  position: absolute;
  height: 128px;
  animation: moveSlideshow 50s linear infinite;
}
@keyframes moveSlideshow {
  100% {
      transform: translateX(-66.6666%);
  }
}
.scroll_01 {
  height:128px;
  position: absolute;
  animation: moveSlideshow 20s linear infinite;
  height: 128px;
}

@keyframes moveSlideshow {
  100% {
      transform: translateX(-66.6666%);
  }
}
.scroll_background {
  height:128px;
  position: absolute;
  animation: moveSlideshow 100s linear infinite;
  align-content: left ;
}
.body-grid {
  width:100%;
  display: flex;
  flex-direction: column;
  margin: auto;
  align-content: center;
  min-width: 100%;
}
.affiliate-outset{
  width: 43em;
  max-width:90vw;
  min-width: 50vw;
  padding: 1.0em 0.5em 0.5em;
  margin: 0.75em auto 0.1em;
  color: white;
  background-color: #819de0;
  border: 8px;
  border-style: solid solid solid solid;
  border-color: #a5beff #4b5a83 #4b5a83 #8ea6e3;
  text-align:center;
  align-self:center;
  font-size:1.2em;
}
