#Chat
.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  & span {
    border: 1px solid black;
    width: 400px;
    padding: 20px;
  }
}

#MainNavigation {
    font-family: Arial;
    position: relative;
    top: 0px;
    left: 0;
    
background: #252525;
  
#https://cssgradient.io/#
  
}
 
#MainNavigation a {
    text-decoration: none; 
}
 
.TopNav {
    margin: 0px;
    padding: 0px;  
}
 
.TopNav a {
    color: #ffffff;
    font-weight: bold;
}
 
.TopNav li {
    padding: 20px 10px 0 16px;
  margin: 0 0px 0 0;
    display: inline-block;
    height: 25px;
    font-size: 13px;
    position: relative;
  text-transform: uppercase;
}
 
 	.TopNav li:hover {
		background: #252525;	
		cursor: pointer;
	}
 
    .TopNav li a:hover {
        color: #FFF;
    }
	
	.TopNav li:hover a {
		color: #FFF;	
	}
     
    .TopNav li ul {
        display: none;
        position: absolute;
        top: 0;
        left: 0px;
    }
     
    .TopNav li:hover ul {
        display: block;
        margin: 40px 0 0 0px;
    }
 
.SubNav {
    background: #ec6922;
}
 
    .SubNav li {
        width: 175px;
        border-right: none;
        font-size: 11px;
        font-weight: normal !important;
        margin: 0px 0 0 0px;
        padding: 7px 0 0 18px;
        background: #252525;
		color: #FFF;
		z-index: 1000;
    }
     
    .SubNav li:hover {
        background: #3c4453;
        color: #FFF;   
    }

.scroll-left {
height: 30px; 
overflow: hidden;
position: relative;
}
.scroll-left p {
position: absolute;
width: 100%;
height: 100%;
margin: 0;
line-height: 25px;
text-align: center;
/* Starting position */
-moz-transform:translateX(100%);
-webkit-transform:translateX(100%); 
transform:translateX(100%);
/* Apply animation to this element */ 
-moz-animation: scroll-left 60s linear infinite;
-webkit-animation: scroll-left 60s linear infinite;
animation: scroll-left 30s linear infinite;
}
/* Move it (define the animation) */
@-moz-keyframes scroll-left {
0% { -moz-transform: translateX(100%); }
100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes scroll-left {
0% { -webkit-transform: translateX(100%); }
100% { -webkit-transform: translateX(-100%); }
}
@keyframes scroll-left {
0% { 
-moz-transform: translateX(100%); /* Browser bug fix */
-webkit-transform: translateX(100%); /* Browser bug fix */
transform: translateX(100%); 
}
100% { 
-moz-transform: translateX(-100%); /* Browser bug fix */
-webkit-transform: translateX(-100%); /* Browser bug fix */
transform: translateX(-100%); 
}
}
