@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600&display=swap');

* {
	margin: 0;
	padding: 0;
	border: none;
	underline: none;
	outline: none;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	}

html, body {
	width: 100%;
	height: 100%;
//	background: #f0ede9;
//	background: #f8f8f8;
	background: #eaeaea;
	font-family: "Manrope", Arial, sans-serif;
	color: #221f1c;
	}

#sidebar {
	width: 250px;
	height: 100%;
	position: fixed;
	background: #fff;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	z-index: 99;
	top: 0; left: 0;

	transition: box-shadow .4s ease, left .3s ease;
	}
/*
#sidebar.floating {
	box-sizing: border-box;
	border-radius: 12px;
	margin-left: 10px;
	margin-top: 10px;
	}
*/
#sidebar.left {
	left: -5px;
	}

#sidebar.stretch {
	left: 0;
	}

#sidebar.hide {
	box-shadow: none;
	left: -250px; 
	}

#logo {
	width: 250px;
	height: 250px;
	background: #adb3b0 url(../img/logo.svg);
	background-size: 40%;
	background-position: center;
	background-repeat: no-repeat;
	}

.menu-holder {
	width: 70%;
	position: relative;
	margin: 40px auto;
	}

#menu {
	text-align: center;
	list-style: none;
	}

#menu a li {
	color: #777;
	margin-bottom: 25px;
	}

#menu a:first-child li {
	color: #221f1c;
	}

#toggle {
	width: 50px;
	height: 50px;
	position: fixed;
	border: 1px solid #adb3b0;
	border-radius: 99px;
	z-index: 999;
	cursor: pointer;
	bottom: 50px; left: 150px;

	transition: left .3s ease;
	}

#toggle.hidden {
	left: 50px;
	}

.page {
	width: 100%;
	box-sizing: border-box;
	padding-left: 250px;

	transition: padding-left .3s ease;
	}

.page.padding {
	padding-left: 0;
	}

.page .holder {
	width: 1100px;
	margin: 350px auto;
	}

h1, h2 {
	font-size: 70px;
	letter-spacing: -0.085em;
	margin-bottom: 80px;
	}

p {
	font-size: 18px;
	text-indent: 3em;
	line-height: 210%;
	}

.block {
	margin: 200px 0;
	}

.colors {
	width: 100%;
	display: table;
	}

.color {
	width: 400px;
	height: 400px;
	background: #adb3b0;
	border-radius: 999px;
	box-shadow: 0 120px 90px rgba(0, 0, 0, 0.15);
	display: inline-block;
	}

.color.secondary {
	background: #221f1c;
	float: right;
	}