body {
	font-family: Arial, sans-serif;
	text-align: center;
	margin: 0;
	padding: 0;
	background-color: #f5f5f5;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
  }
  
  header {
	background-color: #ffffff;
	padding: 40px 20px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  img.logo,
  .social-links a,
  .store-links a {
	opacity: 0;
	transform: translateY(-30px);
	animation: fallIn 0.8s ease-out forwards;
  }
  
  img.logo {
	animation-delay: 0.2s;
	width: 200px;
	height: auto;
  }
  
  .social-links a:nth-child(1) {
	animation-delay: 0.6s;
  }
  
  .social-links a:nth-child(2) {
	animation-delay: 0.8s;
  }
  
  .store-links a {
	animation-delay: 1s;
  }
  
  .social-links, .store-links {
	margin-top: 30px;
  }
  
  .social-links a,
  .store-links a {
	margin: 0 10px;
	text-decoration: none;
	display: inline-block;
  }
  
  .social-links img,
  .store-links img {
	width: 40px;
	height: 40px;
	vertical-align: middle;
  }
  
  .store-links img {
	width: 180px;
  }
  
  footer {
	background-color: #222;
	color: #fff;
	padding: 20px;
	margin-top: auto;
	font-size: 14px;
  }
  
  @keyframes fallIn {
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }
  