*{
			margin: 0;
			padding: 0;
			box-sizing: border-box;
			
		}
		body{
			display: flex;
			justify-content: center;
			align-items: center;
			min-height: 100vh;

		}
		.circle{
			position: relative;
			width: 200px;
			height: 200px;
			border-radius: 50%;
			/*border:1px solid black;*/
			display: flex;
			justify-content: center;
			align-items: center;
			/*background: #03D9E6;*/
		}
		.logo{
			position: absolute;
			width: 200px;
			height: 200px;
			
			background-size: cover;
			border-radius: 50%;
			
			
		}
		.logo img{
			position: absolute;
			width: 130px;
			height: 130px;
			margin-top:35px;
			margin-left: 35px;
			border:4px solid black;
			border-radius: 50%;
			background: #000;
		}
		.text{
			position: absolute;
			width: 100%;
			height: 100%;
			color:revert-layer;
			animation: text-round 10s linear infinite;
			font-weight: 15;

		}

		.text span{
			position: absolute;
			left: 50%;
			font-size: 1.5em;
			transform-origin: 0 100px;
			font-family: arial;
			text-transform: uppercase;
			

		}
		@keyframes text-round{
			0%{
				transform: rotate(-360deg);
				/*text-shadow: 5px 0px #C1C1C0;*/
				font-weight: 600;

			}
			
			100%{
				transform: rotate(0deg);
				/*text-shadow: 5px 0px #C1C1C0;*/
				  font-weight: 600;
			}
		}
