* {
	box-sizing: border-box;
}

html {
	width: 100%;
	height: 100%;
}

body {
	height: 100%;
	font-size: 16px;
	font-weight: 300;
	font-family: "Roboto", sans-serif;
	padding: 0;
	margin: 0;
	color: #fff;
	background-color: #fff;
}

.wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 0 10px;
	height: 100vh;
	background-color: #619801;
	overflow: hidden;
}

.wrapper::after {
	position: absolute;
	content: '';
	left: -50%;
	top: -4%;
	width: 100%;
	height: 100%;
	background-color: #8db548;
	border-radius: 0 0 100% 0;
	animation: bg1 25s ease-in-out infinite alternate;
}

.wrapper::before {
	position: absolute;
	content: '';
	left: -40%;
	top: -9%;
	width: 115%;
	height: 100%;
	background-color: #6b9f11;
	border-radius: 0 0 100% 0;
	animation: bg2 25s ease-in-out infinite alternate;

}

.main-content {
	position: relative;
	z-index: 1;
	max-width: 653px;
}

.noscript_logo {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: 0 auto;
}

@media screen and (max-width: 580px) {
	.logo {
		max-width: 237px;
	}
}

.logo__img {
	display: inline-block;
	margin: 35px 5px 0;
	max-width: 100%;
	height: auto;
	animation: logo-img-animation 1s;
}

.logo__img--desktop {
	width: 543px;
}

@media screen and (max-width: 580px) {
	.logo__img--desktop {
		display: none;
	}
}

.logo__img--mobile {
	display: none;
	width: 129px;
	max-height: 132px;
}

@media screen and (max-width: 580px) {
	.logo__img--mobile {
		display: block;
	}
}

.logo__quote {
	font-size: 150px;
}

.main-content__text {
	font-size: 24px;
	line-height: 1.6;
	margin-left: auto;
	margin-right: auto;
	max-width: 440px;
}

@media screen and (max-width: 580px) {
	.main-content__text--desktop {
		display: none;
	}
}

.main-content__text--mobile {
	display: none;
	font-size: 18px;
	line-height: 1.4;
}
@media screen and (max-width: 580px) {
	.main-content__text--mobile {
		display: block;
	}
}

@media screen and (max-height: 420px) {
	.main-content__text {
		font-size: 17px;
		line-height: 1.4;
	}
}

a {
	color: #0b3fc1;
}

a:hover {
	text-decoration: none;
}

@keyframes bg1 {
	0% {
		left: -60%;
		top: -4%;
		border-radius: 0 0 100% 0;}
	100% {
		left: -40%;
		top: 0%;
		border-radius: 0 0 100% 0;
		background-color: #619801;
	}
}

@keyframes bg2 {
	0% {
		left: -40%;
		top: -9%;
		border-radius: 0 0 100% 0;
	}
	100% {
		left: -10%;
		top: 0%;
		border-radius: 0 0 100% 0;
		background-color: #619801;
	}
}

@keyframes logo-img-animation {
	0% {
		width: 0;
		opacity: 0;
	}
	100% {
		width: 543px;
		opacity: 1;
	}
}