* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: 'Poppins', sans-serif;
	background: #f5f5f5;
	line-height: 2;
}
.container {
	width: 80%;
	height: 100vh;
	margin: auto;
	padding: 25px;
	background-color: cadetblue;
	position: relative;
}

h1 {
	font-size: 40px;
	font-weight: 600;
	color: #333;
	text-align: center;
}
a {
	display: block;
	text-decoration: none;
	color: #fff;
	transition: all 0.3s ease-in-out;
}
a:hover {
	color: #333;
}
.content {
	width: 70%;
	height: 70%;
	padding: 25px;
	position: absolute;
	left: 0px;
	animation: grow 1s 1;
}
@keyframes grow {
	0% {
		scale: 0;
		left: -200px;
	}
	100% {
		scale: 1;
		left: 0px;
	}
}

@media (max-width: 768px) {
	.container {
		width: 100%;
	}
	.content {
		width: 100%;
	}
}
