body {
	font-family: 'Manrope', sans-serif;
	color: #fff;
	background: #160f1b;
	
	position: relative;

    overflow-x: hidden;
}

h1, h2, h3 {
	font-family: 'Clash Display', sans-serif;
	font-weight: 600;
}

h1 {
    font-size: clamp(2.125rem, 1.6rem + 2.625vw, 4.75rem);
}

h2 {
    font-size: clamp(1.75rem, 1.6rem + 0.75vw, 2.5rem);
	text-shadow: rgba(0, 0, 0, 0.75) 0px 0px 5px;
}

h3 {
	font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
}

p, summary {
	font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
}

a {
	font-size: clamp(1rem, 0.925rem + 0.375vw, 1.375rem);
}

iframe {
    width: 100%;
    height: 100%;

    border: none;
}

/* */

.section {	
	padding-block: 3.75rem;
}

.section:first-child{
	padding-block-start: unset;
}

.container{	
	width: min(90vw, 1140px);
	
	margin-inline: auto;
	padding-inline: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}

/* */

.button {
	font-family: 'Clash Display', sans-serif;
	font-weight: 600;
	color: #201f20;
	
	padding: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem) clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
	outline: 2.5px solid rgba(32, 31, 32, 0.9);
	border-radius: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
	
	display: inline-block;
	transition: all 0.125s ease-in-out;
}

.button:hover {
	transform: scale(1.05) rotate(1.25deg);
	color: #fff;
}

.button--gradient {
	background: linear-gradient(135deg,rgba(196, 161, 255, 1) 10%, rgba(255, 214, 84, 1) 90%);
}

.button--yellow {
	background: linear-gradient(339deg,rgba(255, 228, 144, 1) 10%, rgba(255, 214, 84, 1) 90%);
}

/* COOKIES */

#cookie-banner {
	position: fixed;
    	bottom: 0; left: 0; right: 0;
	z-index: 2;
    
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
    
	padding: 0.5rem 0.75rem;

    	background: #39313E;
	border-top: 2.5px solid rgba(255, 255, 255, 0.125);
	box-shadow: rgba(0, 0, 0, 0.75) 0px 0px 7.5px;
}

#cookie-banner p {
	font-size: 14px;
}

#cookie-banner button {
    	border: none;
    	cursor: pointer;
	padding-block: 0.375rem;
}
