* {
	padding: 0;
	margin: 0;
}

body {
	background: rgb(0,0,0);
	background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,88,49,1) 49%, rgba(0,0,0,1) 100%);
}

.container {
	color: #D0D3D4;
	animation-name: todo;
	animation-iteration-count: 1;
	animation-duration: 2s;
}

@keyframes todo {
	0% {
		transform: translateY(-100%);
	}

	100% {
		transform: translateY(0px);
	}
}


.header h1 {
	font-family: 'Yatra One';
	font-size: .8em;
	padding-top: 15px;
	padding-left: 50px;
	color: rgb(0,255,252);
	text-shadow: 0px 0px 10px #1ABC9C;
}

.header img {
	width: 50px;
	position: absolute;
	filter: drop-shadow(0px 0px 2px #17A589) drop-shadow(0px 0px 2px #17A589);
}

.main {
	margin-top: 120px;
}

.div-article img {
	width: 30%;
	position: absolute;
	padding-left: 50px;
	filter: drop-shadow(0px 0px 2px #17A589) drop-shadow(0px 0px 2px #17A589) drop-shadow(0px 0px 2px #17A589);
}


.div-article h2 {
	font-size: 3em;
	padding-left: 54%;
	font-family: 'Yatra One';
	color: rgb(0,221,187);
	text-shadow: 0px 0px 10px #1ABC9C;
}

.div-article p {
	width: 45%;
	transform: translateX(100%);
	padding-top: 80px;
	font-size: .7em;
	text-align: center;
	font-family: 'Yatra One';
	text-shadow: 0px 0px 10px #1ABC9C;
}

.buttom {
	padding-top: 120px;
	padding-right: 26%;
	text-align: right;
}

.buttom a {
	text-decoration: none;
	background: rgb(0,255,252);
	background: linear-gradient(90deg, rgba(0,255,252,1) 0%, rgba(46,140,139,1) 49%, rgba(0,255,146,1) 100%);
	border-radius: 20px;
	color: #D0D3D4;
	padding: 20px;
}

.buttom a:hover {
	padding: 25px;
	transition: .5s;
	text-shadow: 0px 0px 10px #D0D3D4;
	box-shadow: 0px 0px 10px 1px rgb(0,255,252);
}


@media screen and (min-width: 1280px ) {

	.div-article img {
		width: 40%;
		position: absolute;
		padding-left: 50px;
		filter: drop-shadow(0px 0px 2px #17A589) drop-shadow(0px 0px 2px #17A589) drop-shadow(0px 0px 2px #17A589);
	}

	.div-article h2 {
		font-size: 5em;
		padding-left: 50%;
		font-family: 'Yatra One';
		text-shadow: 0px 0px 10px #1ABC9C;
	}

	.div-article p {
		width: 45%;
		transform: translateX(100%);
		padding-top: 100px;
		font-size: 1em;
		text-align: center;
		font-family: 'Yatra One';
		text-shadow: 0px 0px 10px #1ABC9C;
	}

	.buttom {
		padding-top: 120px;
		padding-right: 26%;
		text-align: right;
	}

	.buttom a {
		text-decoration: none;
		background-color: #17A589;
		border-radius: 20px;
		color: #D0D3D4;
		padding: 20px;
	}
}

@media screen and (min-width: 1500px) {
	.buttom {
		padding-right: 28%;
	}

}

@media screen and (max-width: 500px) {
	.container {
		text-align: center;
	}

	.header h1 {
		font-family: 'Yatra One';
		font-size: 2em;
		padding-top: 5px;
		transform: translateX(-2%);
		color: #1ABC9C;
		text-shadow: 0px 0px 10px #1ABC9C;
	}

	.header img {
		width: 80px;
		transform: translateX(-5%);
		position: relative;
		filter: drop-shadow(0px 0px 2px #17A589) drop-shadow(0px 0px 2px #17A589);
	}

	.main {
		margin-top: 50px;
	}

	.div-article img {
		width: 50%;
		position: relative;
		transform: translateX(-5%);
		filter: drop-shadow(0px 0px 2px #17A589) drop-shadow(0px 0px 2px #17A589) drop-shadow(0px 0px 2px #17A589);
	}


	.div-article h2 {
		font-size: 3em;
		transform: translateX(-25%);
		font-family: 'Yatra One';
		color: #1ABC9C;
		margin-top: 50px;
		text-shadow: 0px 0px 10px #1ABC9C;
	}

	.div-article p {
		width: 60%;
		padding-top: 100px;
		transform: translateX(35%);
		font-size: 1.2em;
		font-family: 'Yatra One';
		text-shadow: 0px 0px 10px #1ABC9C;
	}

	.buttom {
		padding-top: 120px;
		text-align: center;
		padding-left: 30%;
		margin-bottom: 20px;
	}

	.buttom a {
		text-decoration: none;
		background-color: #17A589;
		border-radius: 20px;
		font-size: 1.5em;
		color: #D0D3D4;
		padding: 20px;
	}
}