
  
body {
  background: #fff;
  font-size: 0.875em;
  font-family: Courier New;
  padding: 0;
  margin: 0;
  background: url("num.gif");
  }
 
.header{
  align-content: normal; 
  width: 100%;
}

.wrapper {
  background: none;
  top: 0;
  margin: 0 auto;
  width: 70%;
  }

.wrapper-2 {
  position: relative;
}

  
.sidebar-left {
  margin-left: 0px;
  }

/* text colour */
.wrapper, .links a {
  color: #f0f0f0;
  }

.sidebar-left, .sidebar-right {
  width: 200px;
  position: absolute;
  top: 0;
  }

a {
  color: #e13367;
}

.sidebar-left {
  margin-left: 90px;
  }

li::marker {
  content: '\2623';
  font-size: 1.2em;
  width: 75px;
  height: 75px;
  margin-top: 10px;
  margin-right: 10px;
  display: inline-block;
}

li {
  padding: 4px
}

.flex { 
  display: flex; 
}

.mr { 
  position: relative;
  margin-right: 3em;
  margin-left: 3em;
}
  
.main {
  margin-left: 320px;
  width: 650px;
  }
  
.sidebar-right {
  width: 130px;
  margin-left: 1000px;
  }
 

.box {
  border: 3px;
  background: #0f0f0f;
  padding: 0;
  margin-bottom: 10px;
  box-shadow: rgba(225, 51, 103, 0.8) 0 0 9px 3px;
  
  }

  
.header {
  text-align: center;
  margin-top: 15px;
  top: 0;
  height: auto;
  }
  
.links {
  margin-top: 2em;
  margin-left: 25em;
  margin-bottom: 1em;
  }

.link {
  text-align: center;
  display: inline-block;
  list-style-type: none;
  float: none;
  font-weight: bold;
  font-size: 1.16em;
  padding: 5px;
  margin-right: 10px;
  margin-left: 10px;
  border: 0px solid red;
  margin-bottom: 5px;
  }
  

.title { /*suppress title, since we're putting the title as text in the header box*/
  display: none;
  }

.footer {
  height: 0;
  }
  
/* box headers - annoying pink things
.box h1, .box h2, .box h3, .box h4 {
  background: #facbd8;
  margin: 0;
  padding: 0.35em 0.25em 0.3em 0.25em;
  text-align: center;
  border-bottom: 3px double #333;
  }*/

.box h1, .box h2, .box h3, .box h4 {
  margin: 0;
  padding: 0.35em 0.25em 0.3em 0.25em;
  text-align: center;
  }
  
.inner {
  padding: 0.25em 1em 0.3em 1em;
  font-size: 1.075em;
  }
  
  
/* For narrow screens: slightly narrows sidebars, and makes the width
 * of the main/center div flexible (sized relative to viewport width.)
 */
@media(max-width:880px) {
  .wrapper {
    width: calc(340px + 50vw);
    }
  .sidebar-left, .sidebar-right {
    width: 160px;
    }
  .main {
    width: 50vw;
    margin-left: 170px;
    }
  }

/*Mobile compatibility. Just turns it all into a vertical layout.*/  
@media(orientation:portrait) {
  
  .links {
    width: 96vw;
    margin: 0 auto;
    padding:0;
    position: relative;
    }
  
  .header {
    width: 96vw;
    margin: 0 auto;
    padding:0;
    position: relative;
    }
  
  .header img {
  width: 100%;
  height: 100%;
}
  
  .wrapper {
    width: 96vw;
    margin: 0 auto;
    padding:0;
    position: relative;
    }
  .wrapper-2 {
    width: 94vw;
    margin: 0 auto;
    padding:0;
    position: relative;
    }
  .sidebar-left, .main, .sidebar-right {
    position: relative;
    width: 92vw;
    margin: 0.25rem 1vw;
    }
  }

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

.marquee{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;

  span{
    text-transform: uppercase;
    will-change: transform;
    transform: translateX(0);
    white-space: nowrap;
    animation: marquee 10s linear infinite;
    
    // Extra Styling
    font-size: 200px;
    font-family: 'Courier New', Helvetica, Arial, sans-serif;
    font-weight: 900;
    color: #FFFFFF;
  }
}