@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');
*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	 font-family: "Ubuntu", sans-serif;
	 font-weight: 400;
	 line-height: 1.5;
}
body{
	background-color: #f5d7f5;
}
main{
	padding: 2rem;
	max-width: 1440px;
	margin: 0 auto;
}
header{
	background-color: black;
	color: white;
	padding: 1rem;
	margin-top: 0.8rem;
}
.header-main,
.header-policy
{
	display: none;
	gap: 2rem;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.active{
	display: flex;
}
.title{
	font-weight: 700;
	text-align: center;
	margin: 2rem 0 3rem 0;
	font-size: 3rem;
	background: #CB60B3;
background: repeating-radial-gradient(ellipse farthest-corner at center center, #d9a3cd 0%, #A80077 51%, #dc229e 100%);
background-clip: text;
-webkit-text-fill-color: transparent;
}
section{
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
a{
	text-decoration: none;
	color: inherit;	
	font-weight: 500;
		font-size: 1.2rem;
}
li{
	list-style: none;
	font-size: 1.1rem;
}
.banner{
	width: 80%;
	border-radius: 10px;
	box-shadow: #f02eaa66 -5px 5px, #f02eaa4d -10px 10px, #f02eaa33 -15px 15px, #f02eaa1a -20px 20px, #f02eaa0d -25px 25px;
	align-self: center;
	margin-bottom: 3rem;
}
p{
	font-size: 1.3rem;
	margin: 1rem 0;
}
.get{
	max-width: 350px;
	align-self: center;
	text-align: center;
}
.store-buttons{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
	margin: 30px 0;
}
.store-buttons img{
	width: 250px;
	 animation: pulse 5s ease-in-out infinite;
}
@media (max-width: 768px) {
.banner{
	width: 100%;
}
.title{
	font-size: 2.5rem;
	margin: 0.5rem auto 1rem auto;
	width: 80%;
	line-height: 1.2;
	text-align: center;
}
p{
	margin: 0;
}
}
@keyframes pulse {
  0%, 100% {
    scale: 1;
  }
  50% {
    scale: 0.9;
  }
}