* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: black;
	color: white;
	animation: background 20s infinite;
}

a {
	background: linear-gradient(270deg, #ea4544 0%, #ea7d11 105.58%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	font-family: 'Anton', sans-serif;
	font-size: 2rem;
	text-transform: uppercase;
	margin: 50px 0 0;
}

.svg {
	width: 100%;
	height: auto;
}

.svg path {
	fill: white;
	animation: title_svg 20s infinite;
}

#main {
	height: 100vh;
	/* background-color: brown; */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: background-color 0.3s;
	overflow: hidden;
}
.title {
	display: flex;
	align-items: center;
	justify-content: center;
	height: auto;
	width: 100%;
	max-width: 1400px;
	padding: 0 50px;
}

@media (max-width: 630px) {
	a {
		position: absolute;
		bottom: 60px;
	}

	.title {
		transform: rotate(90deg);
		width: 80vh;
	}
}

.leters {
	display: block;
	position: relative;
	width: 160px;
	height: 290px;
}

.leter_one {
	position: absolute;
	width: 65px;
	height: 287px;
	left: 0px;
	top: 3px;

	background: #ffffff;
	border-radius: 2px;

	transition: all 0.3s;

	animation: first_leter 10s infinite;
}

.leter_two {
	position: absolute;
	width: 65px;
	height: 287px;
	left: 79px;
	bottom: 0px;

	background: #ffffff;
	border-radius: 2px;

	transition: all 0.3s;

	animation: two_leter 10s infinite;
}

.leter_three {
	position: absolute;
	width: 65px;
	height: 90px;
	left: 20px;
	top: 90px;
	transform: rotate(90deg);

	background: #ffffff;
	border-radius: 2px;

	transition: all 0.3s;

	animation: three_leter 10s;
	display: none;
}

@keyframes background {
	50% {
		background-color: #ffffff;
	}

	100% {
		background-color: black;
	}
}

@keyframes title_svg {
	50% {
		fill: black;
	}

	100% {
		fill: white;
	}
}
