@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;
	
	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%;
	font-size:16px;
	
	animation: scrollingText 20s linear infinite;
	//animation-delay: 2s;
}

.gmail, .yahoo{
	height:50px;
	width:auto;
}