    * {
  box-sizing: border-box;
}
li::marker {
  color: #E30A17;
}
a:link {
  color: white;
  background-color: transparent;
  text-decoration: underline;
  text-decoration-color: #E30A17;
}

a:visited {
  color: white;
  background-color: transparent;
  text-decoration: underline;
  text-decoration-color: #E30A17;
}

a:hover {
  color: #E30A17;
  text-decoration: underline;
}

a:active {
  color: #E30A17;
  text-decoration: none;
}
.column2 {
  float: left;
  width: 50%;
  padding: 5px;
}

/* Clearfix (clear floats) */
.row::after {
  content: "";
  clear: both;
  display: table;
}
    .scroll-left {
 height: 50px;	
 overflow: hidden;
 position: relative;
}
.scroll-left p {
 position: absolute;
 width: 100%;
 height: 100%;
 margin: 0;
 line-height: 50px;
 text-align: center;
 /* Starting position */
 transform:translateX(100%);
 /* Apply animation to this element */
 animation: scroll-left 20s linear infinite;
}
/* Move it (define the animation) */
@keyframes scroll-left {
 0%   {
 transform: translateX(200%); 		
 }
 100% {
 transform: translateX(-200%); 
 }
}
    body{
      font-family: 'Trebuchet MS', sans-serif;
      margin: auto;
      background-color: #121212;
      }
    h1, h2, h3, h4{
      color: #E30A17;
      }
    p {
      color: white;
      font-size: 125%;
      }
    p, h1, h2, h3, h4 {

      margin: 10px;
      }
    header, article, aside, footer {
      padding: 5px;
      background-color: #121212;
      margin: auto;
      border: solid;
      border-width: 5px;
      border-color: #E30A17;
      }
    body {
      width: 95%;
      
      }
    header {
    text-align: center;
    }
    aside {
      float: right;
      width: 25%
      }
      article {
        width: 100%;
        float: left;
        }
        h1 {
          font-size: 200%;
          }
          hr{
            color: #E30A17; 
            width: 90%;
            margin: auto;
            }