@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@10..48,800&family=Roboto:wght@400;700&display=swap');

* {
	box-sizing: border-box;
}

body {
	background:rgb(239, 230, 232);
	color: rgb(164, 37, 100);
	font-family: 'Roboto', sans-serif;
}

/* TITLES */

h1,h2,h3 {
	display: block;
	width: 100%;
	font-family: 'Bricolage Grotesque', sans-serif;
}

h1 {
	font-size: 4rem;
	margin-bottom: 20px;
}

h2 {
	font-size: 2rem;
	margin-bottom: 10px;
}

/* LOGO */

.logo {
	height: 80%;
}

/* BUTTON */

button,.button {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	text-align: center;
	border:var(--border);
	padding:12px 16px;
	border-radius: 20px;
	color:rgb(255, 255, 255);
	text-shadow: 1px 2px 0px #0000002f;
	background: var(--btn-color);
	box-shadow: 4px 4px 0px var(--btn-shadow-color), 2px 4px 10px #0000002f;
	font-family: var(--btn-font);
	font-weight: 700;
	text-decoration: none;
	font-size: 1.4rem;
	transition: all 0.3s ease;
}

.button img {
	height: 30px;
	margin-right:5px;
}

button:hover,
.button:hover {
	box-shadow: 6px 6px 0px var(--btn-shadow-color), 2px 4px 10px #0000002f;
	transform: translate(-2px,-2px);
	background: var(--btn-hover);
}

/* SIDEBAR */

.sidebar {
	position: fixed;
	top:0;
	left:0;
	bottom:0;
	width: 40%;
	/* max-width: 500px; */
	background:#e47ca8;
	background:linear-gradient(180deg,#eeb082 0%,#e47ca8 100%);
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	padding:20px;
	z-index: 100;
}


/* NAVIGATION */

.navigation {
	display: flex;
	font-size: 2rem;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	font-family: 'Bricolage Grotesque', sans-serif;
}

.navigation a {
	margin-bottom: 10px;
	transition: all 0.1s ease;
	text-decoration: none;
	color: white;
}

.navigation a:hover {
	transform: scale(1.1);
}

/* KEN */

.ken {
	position: relative;
	aspect-ratio:1;
	width: 90%;
	max-width: 400px;
	margin-bottom: 100px;
	display: flex;
	justify-content: center;
}

.ken img {
	height: 60%;
	position: absolute;
	bottom:-15%;
	z-index: 100;
}

.ken .video {
	position: absolute;
	height: 100%;
	overflow: hidden;
	border-radius: 600px;
	aspect-ratio:1;
}

.mute {
	background: #9d4b77;
	position: absolute;
	right:7.5%;top:7.5%;
	width: 15%;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
	/* max-width: 80px;
	max-height: 80px; */
	aspect-ratio:1;
}

.mute svg {
	max-height: 50%;
	max-width: 50%;
	opacity: 0.6;
}

.mute-mobile {
	position: absolute;
	top:60px;right:25px;
	width: 40px;
	height:40px;
	display: none;
}

video {
	width: 210%;
	margin-left: -62%;
	margin-top: -10%;
}


/* CONTENT */

.content {
	position: fixed;
	top:0;
	left:40%;
	bottom:0;
	width: 60%;
	padding:0px 50px;
	overflow-y: scroll;
	overflow-x: hidden;
}


/* SECTION */

section {
	width: 100%;
	max-width: 1000px;
	display: flex;
	flex-flow: wrap;
	justify-content: start;
	align-items: center;
	align-content: center;
	font-size: 2rem;
	padding:30px 0px;
}



section p.small {
	font-size: 1.2rem;
}

section p + p {
	margin-top: 20px;
}

section p + h2 {
	margin-top: 20px;
}

section img {
	max-width: 100%;
}

.fineprint {
	margin-top: 40px;
	font-size: 0.6em;
	opacity: 0.4;
}

/* ICONS */

.icons {
	margin-top:20px;
	display: flex;
	/* justify-content: space-between; */
	gap:20px;
	width: 100%;	
}

.icons a {
	display: block;
	overflow: hidden;
	max-width: 60px;
}

.icons img {
	width:100%;
	margin-top:20px;
}


/* ROADMAP */

.roadmap {
	display: flex;
	flex-wrap: wrap;
	gap:20px;
}

.roadmap-mark {
	font-size: 1.2rem;
	width:calc(50% - 20px);
	background:#ffffff82;
	border-radius: 25px;
	padding:30px 20px;
	color:#999;
	line-height: 1.5rem;
}

.roadmap-mark h2 {
	margin-bottom: 20px;
	line-height: 1.8rem;
}

.roadmap-mark.checked {
	background: rgb(97, 190, 158);
	background:linear-gradient(135deg,color(display-p3 0.547 0.857 0.787) 0%,color(display-p3 0.387 0.716 0.578) 100%);
	color:white;
	box-shadow: 5px 5px 30px #0000001f
}


.social-feed {
	display: flex;
	gap:10px;
	overflow-x: scroll;
}

.social-feed blockquote {
	/* width: 33.33%; */
}





@media only screen and (max-width: 1200px) {

.roadmap-mark {
	width: 100%;
}

}


@media only screen and (max-width: 800px) {

	h1 {
		font-size: 3rem;
	}
	
	h2 {
		font-size: 1.5rem;
	}

	section {
		font-size: 1rem;
	}

	section p.small {
		font-size: 0.8rem;
	}

	.ken {
		position: absolute;
		aspect-ratio:1;
		width: 150px;
		margin-bottom: 0px;
		padding: 0px;
		bottom:-20px;
	}
	
	.mute {
		display: none;
	}

	.mute-mobile {
		display: block;
	}

	.navigation {
		display: none;
	}

	.sidebar {
		width: 100%;
		height: 150px;
		top:0;
		left:0;
		right:0;
	}

	.content {
		width:100%;
		left:0;
		right:0;
		top:150px;
		padding:0 20px;
	}
	
	.roadmap-mark {
		width: 100%;
		font-size: 0.9rem;
		line-height: 1.1rem;
		padding:20px;
	}
	
	.roadmap-mark h2 {
		font-size: 1.3rem;
		margin-bottom: 10px;
		line-height: 1.8rem;
	}
	
	.social-feed .twitter-tweet {
		display: none !important;
		width: 100%;
	}
	
	.social-feed .twitter-tweet:first-child {
		display: block !important;
	}
	
}