@charset "utf-8";
/* CSS Document */

html,
body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	color: #fff;
	background: #121317;
	overflow: hidden;
}


.wrapper {
	position: relative;
    display: flex;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.logo {
	position: relative;
	width: 250px;
    height: auto;
	margin: 0 auto;
	padding-bottom: 50px;
	transform: scale(0.9);
	animation: logo-animation 6s ease-in-out infinite;
}

.logo-tv {
	fill: #4CAF50;
}

.logo-font {
	fill: #fff;
}

@keyframes logo-animation {
	0% {
		transform: scale(0.9);
	}
	50% {
		transform: scale(1);
	}
	100% {
		transform: scale(0.9);
	}
}