body {
	background-color: #f9f9f9;
	font-family: "Open Sans", sans-serif;
	margin: 0;
	padding: 0;
}

.container {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

h1 {
	color: #ff5a5f;
	font-weight: 600;
	font-size: 36px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

p {
	color: #666;
	font-weight: 300;
	font-size: 18px;
	margin-bottom: 40px;
}

@keyframes wave-animation {
	0% {
		background-position-x: 0;
	}
	100% {
		background-position-x: 1920px;
	}
}
