@keyframes scrollingText{
	0%	{transform: translate(0, 0)		}
	100%{transform: translate(-100%, 0)	}
}

body, html{//background-color:black;}

.marquee{
	width: 100%;
	white-space: nowrap;
    overflow:hidden;
	
	display: flex;
    //justify-content: center;
	//align-items: center;
	
	border-top: 3px solid white;
	border-bottom: 3px solid white;
	background-color: rgba(55, 62, 80, 1.0);
	color:white;
}

.marquee span{
	display: inline-block;
	padding-left:100%;
	
	animation: scrollingText 10s linear infinite;
	//animation-delay: 2s;
	//border: 1px solid black;
}

.gmail, .yahoo{
	height:50px;
	width:auto;
}