*{}
/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
	box-sizing: border-box;
}
/* 2. Remove default margin */
* {
	*   margin: 0;
	*   }
	*/* 3. Enable keyword animations */
	@media (prefers-reduced-motion: no-preference) {
		html {
			interpolate-size: allow-keywords;
		}
	}
	body {
		/* 4. Add accessible line-height */
		line-height: 1.5;
		/* 5. Improve text rendering */
		-webkit-font-smoothing: antialiased;
	}
	/* 6. Improve media defaults */
	img, picture, video, canvas, svg {
		display: block;
		max-width: 100%;
	}
	/* 7. Inherit fonts for form controls */
	input, button, textarea, select {
		font: inherit;
	}
	/* 8. Avoid text overflows */
	p, h1, h2, h3, h4, h5, h6 {
		overflow-wrap: break-word;
	}
	/* 9. Improve line wrapping */
	p {
		text-wrap: pretty;
	}
	h1, h2, h3, h4, h5, h6 {
		text-wrap: balance;
	}
	/*
	 *   10. Create a root stacking context
	 *   */
#root, #__next {
	isolation: isolate;
}


@font-face {
	font-family: 'Futura';
	src: url('fonts/futura light bt.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Futura';
	src: url('fonts/Futura Light Italic font.ttf') format('truetype');
	font-weight: 300;
	font-style: italic;
}

@font-face {
	font-family: 'Futura';
	src: url('fonts/futura medium bt.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Futura';
	src: url('fonts/Futura Medium Italic font.ttf') format('truetype');
	font-weight: 500;
	font-style: italic;
}

@font-face {
	font-family: 'Futura';
	src: url('fonts/Futura Book font.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Futura';
	src: url('fonts/Futura Book Italic font.ttf') format('truetype');
	font-weight: 400;
	font-style: italic;
}

@font-face {
	font-family: 'Futura';
	src: url('fonts/Futura Bold font.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Futura';
	src: url('fonts/Futura Bold Italic font.ttf') format('truetype');
	font-weight: 700;
	font-style: italic;
}

@font-face {
	font-family: 'Futura';
	src: url('fonts/Futura Heavy font.ttf') format('truetype');
	font-weight: 800;
	font-style: normal;
}

@font-face {
	font-family: 'Futura';
	src: url('fonts/Futura Heavy Italic font.ttf') format('truetype');
	font-weight: 800;
	font-style: italic;
}

@font-face {
	font-family: 'Futura';
	src: url('fonts/Futura Extra Black font.ttf') format('truetype');
	font-weight: 900;
	font-style: normal;
}

/* Optional Condensed or Alternate Styles */
@font-face {
	font-family: 'Futura';
	src: url('fonts/futura medium condensed bt.ttf') format('truetype');
	font-weight: 500;
	font-stretch: condensed;
}

@font-face {
	font-family: 'Futura';
	src: url('fonts/Futura-CondensedLight.otf') format('opentype');
	font-weight: 300;
	font-stretch: condensed;
}

@font-face {
	font-family: 'Futura';
	src: url('fonts/Futura XBlk BT.ttf') format('truetype');
	font-weight: 950;
	font-style: normal;
}

@font-face {
	font-family: 'Futura';
	src: url('fonts/unicode.futurab.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'Futura';
	src: url('fonts/unicode.futurabb.ttf') format('truetype');
	font-weight: 800;
	font-style: normal;
}



:root {
	--background: #EEEAFE;
	--text-header: white;
	--text-main: #000000;
	--text-muted: #000000;
	--highlight-yellow: #fff56e;
	--lavender-button: #b3BAFF;
	--soft-violet: #bcb5ff;
}

.centered {
	text-align: center;
}

.justified {
	text-align: justify;
}

.spaced {
	line-height: 1.6;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.circle {
	border-radius: 50%;
	z-index: -1;
	height: 120px;
	width: 120px;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
}

body {
	font-family: 'Futura', sans-serif;
	font-weight: 500;
	margin: 12px auto;
	padding: 0;
	color: var(--text-main);
	background-color: var(--background);
	line-height: 1;
	max-width: 1024px;
}

header {
	position: relative;
	text-align: center;
	padding: 60px 20px;
}

.logo{
	position: absolute;
	width: 50%;
	height: 100%;
	right: 50%;
	transform: translate(50%, -25%);
}

.purple {
	background-color: #978EF4;
	opacity: 71%;
	box-shadow: 0px 0px 30px 30px #978EF4;
	border: 2px solid #978EF4;
}

.yellow {
	background-color: #FFFEB6;
	opacity: 88%;
	box-shadow: 0px 0px 30px 30px #FFFEB6;
	border: 2px solid #FFFEB6;
}

.ellipse{
	background-color: #978EF4;
	opacity: 71%;
	position: absolute;
	z-index: -1;
	width: 30%;
	height: 50%;
	left: 50%;
	top: 50%;
	transform: translate(-65%, -50%) skew(-45deg);
	border-radius: 50%;
	box-shadow: 0px 0px 20px 20px #978EF4;
}

.title {
	width: 50%;
	margin: auto;
	text-align: left;
}

.title h1 {
	font-size: 6rem;
	font-weight: bold;
	font-style: italic;
	color: var(--text-header);
	text-transform: lowercase;
	margin: 12px;
}

.subtitle {
	width: 40%;
	margin: auto;
	font-size: 1.1rem;
	margin-top: 10px;
	color: var(--text-muted);
}

section {
	padding: 40px 20px;
	margin: auto;
}

h2 {
	text-transform: uppercase;
	font-size: 1rem;
	margin-bottom: 20px;
	color: var(--text-main);
}

.main {
	display: flex;
	flex-direction: row;
}

.left, .right {
	width: 50%;
}

.intro {
}

.effects ul,
.options ul,
.packages ul,
.logos ul{
	list-style-type: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.options ul {
	display: flex;
	margin: auto;
	flex-direction: column;
	align-items: center;
}

.effects li {
	background-image: url("./images/ellipse.svg") ;
	color: var(--text-main);
	font-weight: bold;
	padding: 10px 15px;
	background-size: cover;
    	background-repeat: no-repeat;
}

.options li {
	background: var(--lavender-button);
	padding: 10px 15px;
	border-radius: 30px;
	font-weight: bold;
	text-align: center;
	width: 280px;
	min-height: 52px;
	margin: 5px 14px;
}

.packages ul {
	margin: auto;
	justify-content: space-between;
	min-width: 100%;
}

.packages li {
	border: 1px solid #5041E6;
	color: var(--text-main);
	padding: 24px 44px;
	border-radius: 42px;
	text-align: center;
}


.packages h2 {
	margin: 32px 0px;
}

.book {
	text-align: center;
	margin-top: 40px;
	padding: 40px 20px;
}

.button {
	display: inline-block;
	background: transparent;
	color: var(--text-main);
	font-weight: bold;
	padding: 14px 28px;
	text-decoration: none;
	border-radius: 30px;
	font-size: 1rem;
	text-transform: uppercase;
}

footer {
	margin-top: 40px;
	text-align: left;
	padding: 20px;
	font-weight: bold;
	color: var(--text-muted);
}

.logos {
	display: flex;
	flex-direction: column;
}

.logos ul{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

li.brand img{
	height: 35px;
}
