* {
	padding: 0;
	margin: 0;
	text-decoration: none;
	list-style: none;
	box-sizing: border-box;
}
body {
	background-color: white;
	font-family: 'Quicksand-VariableFont_wght';
}
@font-face {
	font-family: 'Quicksand-VariableFont_wght';
	src: url('../polices/Quicksand-VariableFont_wght.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'CalSans-Regular';
	src: url('../polices/CalSans-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 32px;
    width: 75%;
    font-family: "CalSans-Regular", sans-serif;
    font-style: italic;
    font-weight: 0;
    text-transform: uppercase;
    color: black;
    text-shadow: 1px 1px 5px rgba(255, 255, 255, 1);
}
h2 {
    font-family: "CalSans-Regular", sans-serif;
    font-weight: 0;
    text-transform: uppercase;
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
}
h2:not(.no-gradient) {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 40px;
    line-height: 48px;
    background: linear-gradient(to right, #f4524d 0%, #5543ca 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}
h3 {
    font-family: "CalSans-Regular", sans-serif;
    font-weight: 0;
    text-transform: uppercase;
    font-size: 18px;
    margin-top: 20px;
	margin-top: 5px;
	letter-spacing: 1px;
}
h4 {
    font-family: "CalSans-Regular", sans-serif;
    font-weight: 0;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 20px;
}
h5 {
    left: 50%;
    text-align: center;
    font-size: 32px;
    font-family: "CalSans-Regular", sans-serif;
	letter-spacing: 2px;
	text-transform: uppercase;
}
h6 {
    text-align: center;
    font-size: 20px;
    font-family: "Quicksand-VariableFont_wght", sans-serif;
	text-transform: uppercase;
	color: black;
}

.calltoaction {
    padding: 12px 25px;
    margin: 0 auto;
    display: block;
    width: 100%;
    max-width: 500px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
    background: linear-gradient(270deg, #8300A8, #D342FF, #8300A8);
    background-size: 200% 200%;
    color: white;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    font-size: 20px;
    font-family: 'Quicksand-VariableFont_wght', sans-serif;
    animation: gradientMove 3s linear infinite;
    transition: transform 0.2s ease;
}
.calltoaction:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
	background: #F9B0FF;
	color: black;
	transform: scale(1.05);
	transition: transform 0.2s ease;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@media (max-width: 900px) {
	h2:not(.no-gradient) {
        font-size: 25px;
        letter-spacing: 1px;
		line-height: 30px;
    }
	.calltoaction {
		padding: 10px 20px;
		font-size: 16px;
		width: 80%;
	}

}