/* Reset some basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #F9D9D4;
  font-family: 'Poppins', sans-serif;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
}

.container {
  max-width: 900px;
  width: 100%;
}

header {
  margin-bottom: 30px;
}

.header-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-bottom: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #000;
  font-family: 'Atma', cursive;
  font-size: 3rem;
  margin-bottom: 10px;
}

p {
  font-family: 'Atma', cursive;
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: white;
  color: #0CC1E0;
  border: 2px solid #0CC1E0;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.shop-btn {
  border-color: #9DA941;
  color: #9DA941;
}

.shop-btn:hover {
  background-color: #9DA941;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(157, 169, 65, 0.5);
}

.insta-btn:hover {
  background-color: #0CC1E0;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(12, 193, 224, 0.5);
}

footer {
	  margin-top: 30px;
	}
	
	.made-with {
	  font-family: 'Atma', cursive;
	  font-size: 1rem;
	  color: #555;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  gap: 8px;
	}
	
	.made-with i {
	  color: #9DA941;
	}
	.made-with b {
		color: #FE65C4;
	}
	/* Already have .fade-in animation */
	
/* Fade-in animation for text/buttons */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
	opacity: 0;
	transform: translateY(20px);
  }
  to {
	opacity: 1;
	transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 600px) {
  h1 {
	font-size: 2.2rem;
  }

  p {
	font-size: 1.2rem;
  }

  .btn {
	padding: 12px 24px;
	font-size: 1rem;
  }

  .header-img {
	max-width: 100%;
	margin-bottom: 20px;
  }
}
