/*========SETUP========*/
*{
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
}

body{
  overflow-x: clip;
  overflow-y: visible;
}

button{
	border: none;
	outline: none;
	background-color: transparent;
}

/*==========================*/
/*===== MOBILE VERSION =====*/
/*==========================*/

@media only screen and (max-device-width: 700px){
/*==========MENU===========*/
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

nav{
	z-index: 10;
	position: fixed;
	width: 100%;
	height: 12vh;
	margin: 0 auto;
	background: linear-gradient(#202225, transparent);
}

nav a{
	display: block;
	text-decoration: none;
	color: white;
	padding: 25px 0;
	font-size: 430%;
}

nav a:hover{
	color: #2EAF8F;
}

.navbar-brand{
	display: inline;
	width: 10vw;
	margin: 3% 0 0 6%;
	text-align: right;
	font-weight: bold;
	list-style-type: none;
}

.navbar-brand-name {
	float: left;
	padding: 2vh 0 0 2vw;
}

.navbar-brand-logo {
	padding: 1vw 0 0 5vw;
	float: left;
	width: 10.5vw;
	height: 10.5vw;
	margin: 22px 0px 0px 0px;
}

.navbar-menu{
	display: none;
}

.invite-button-menu{
	font-size: 750%;
	padding: 10px 0;
	border: none;
	margin: 3.5vh 0px;
	background-color: white;
	color: black;
	font-weight: bold;
	width: 50vw;
	border-radius: 290486px;
	margin-top: 6vw;
	margin-left: 0vw;
}

.invite-button-menu:hover{
	color: #2EAF8F;
}

#menu_toggle {
	opacity: 0;
}
#menu_toggle:checked + .menu_btn > span {
	transform: rotate(45deg);
}
#menu_toggle:checked + .menu_btn > span::before {
	top: 0;
	transform: rotate(0deg);
}
#menu_toggle:checked + .menu_btn > span::after {
	top: 0;
	transform: rotate(90deg);
}
#menu_toggle:checked ~ .menu_box {
	left: 0 !important;
}
.menu_btn {
	position: fixed;
	float: right;
	top: 10vw;
	right: 8vw;
	width: 8.5vw;
	cursor: pointer;
	z-index: 1;
}
.menu_btn > span,
.menu_btn > span::before,
.menu_btn > span::after {
	display: block;
	position: absolute;
	width: 100%;
	height: 10px;
	background-color: #ffffff;
	transition-duration: .25s;
}
.menu_btn > span::before {
	content: '';
	top: -25px;
}
.menu_btn > span::after {
	content: '';
	top: 25px;
}
.menu_box {
	position: fixed;
	top: 0;
	left: 100%;
	width: 100vw;
	height: 100vh;
	padding: 80px 0;
	list-style: none;
	background-color: #000000;
	transition-duration: .40s;
}
.menu_list{
	padding-top: 18vw;
}
.menu_item {
	margin-top: 2.5vw;
	text-align: center;
	color: rgb(255, 255, 255);
	font-size: 150%;
	font-weight: 600;
	transition-duration: .25s;
}
.menu_item:hover {
	color: #2EAF8F;
}

/*==========INTRO==========*/
.intro{
	background-color: #202225;
	width: 100%;
	height: 74vh;
	margin: 0 auto;
	padding: 26vh 0 0 0;
	position: relative;
	text-align: center;
	color: white;
}

.intro-logo{
	height: 25vw;
	width: 25vw;
}

.intro-title{
	font-size: 500%;
	font-weight: bold;
	padding: 1%;
}

.intro-text{
	padding-top: 1vh;
	margin: 0 10%;
	font-size: 250%;
}

/*==========WAVES==========*/
.ocean{
	width:100%;
	position:absolute;
	bottom:0;
	left:0;
}

.wave-up{
	background: url(https://heikos.xyz/files/lithium/wave_up.svg) repeat-x; 
	position: absolute;
	top: -160px;
	width: 100vw;
	height: 250px;
}

.wave-down{
	background: url(https://heikos.xyz/files/lithium/wave_down.svg) repeat-x; 
	position: absolute;
	width: 100vw;
	height: 250px;
}

.wave-end{
	background: url(https://heikos.xyz/files/lithium/wave_end.svg) repeat-x; 
	position: absolute;
	width: 100vw;
	height: 250px;
}

/*========COMMANDS=========*/
.features{
	background-color: #2EAF8F;
	position: relative;
	width: 100%;
}

.features-list{
	list-style-type: none;
	padding: 0 0 1% 3%;
}

span{
	display: none;
}

.c-command{
	list-style-type: none;
	text-align: right;
	width: 18.5%;
	font-weight: bold;
	letter-spacing: -1.5px;
}

.c-description{
	list-style-type: none;
	text-align: left;
	padding-left: 2%;
	width: 79.5%;
	letter-spacing: -1.5px;
}

.command-opener{
	font-size: 250%;
	cursor: pointer;
	text-align: left;
	padding: 10px 0;
	border: none;
	margin: 20px 0 0 0;
	background-color: white;
	color: black;
	font-weight: bold;
	width: 94vw;
	border-radius: 290486px 290486px 290486px 290486px;
	height: 6vh;
}

.command-opener ul{
	list-style-type: none;
}

.command-opened{
	background-color: #ffffff;
	width: 94vw;
	font-size: 185%;
	padding: 0 0 1.5vh 0;
	border-radius: 0 0 3vh 3vh;
}

.command-opened li{
	float: left;
}

.openers{
	display: flex;
    flex-wrap: wrap;
}

.opener-title{
	float: left;
	padding-left: 4vw;
	width: 83vw;
}

.opener-icon{
	height: 32px;
	width: 32px;
}

/*=========ENDING==========*/
.final{
	background-color: #202225;
	height: 7vh;
	padding-top: 11vh;
}

.invite-button{
	text-decoration: none;
	position: relative;
	margin: 0 0 0 25vw;
	padding: 1vw 6vw 1vw 6vw;
	border: none;
	background-color: white;
	color: black;
	font-weight: bold;
	font-size: 6vw;
	border-radius: 290486px;
}

.invite-button:hover{
	color: #2EAF8F;
}

.wave-end{
	height: 10vh;
}

.end{
	background-color: #2f3136;
	height: 15vw;
	padding-top: 8vh;
	color: #ffffff88;
}

.end-display{
	list-style-type: none;
	display: inline-block;
	width: 100vw;
}

.end-name{
	list-style-type: none;
	float: left;
	margin: 1.5% 0 0 13%;
	width: 14%;
	padding-right: 40%;
}

.end-name li:hover{
	color: #FFFFFFFF
}

.end-menu{
	list-style-type: none;
	text-align: right;
}

.end-menu a{
	text-decoration: none;
	color: #ffffff88;
	float: right;
	margin-right: 13%;
	width: 15%;
}

.end-menu a:hover{
	color: #FFFFFFFF;
}

.end-title{
	font-weight: bold;
	font-size: 120%;
}
}

/*============================*/
/*===== COMPUTER VERSION =====*/
/*============================*/

@media only screen and (min-device-width: 700px){
/*==========MENU===========*/
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

nav{
	z-index: 10;
	position: fixed;
	width: 100%;
	margin: 0 auto;
	padding: 0 30% 0 8.2%;
	background: linear-gradient(#202225, transparent);
}

nav ul{
	list-style-type: none;
}

nav li{
	float: left;
	width: 12%;
	text-align: center;
}

nav ul::after{
	content: "";
	display: table;
	clear: both;
}

nav a{
	display: block;
	text-decoration: none;
	color: white;
	padding: 25px 0;
	font-size: 120%;
}

nav a:hover{
	color: #2EAF8F;
}

.navbar-brand{
	float: left;
	width: 25%;
	margin: 0px 0px 0px 4%;
	text-align: right;
	font-weight: bold;
}

.navbar-brand-logo {
	margin: 22px 0px 0px 0px;
}

.navbar-menu{
	float: right;
	width: 59%;
	text-align: right;
}

.invite-button-menu{
	padding: 10px 0px;
	border: none;
	margin: 18px 0px;
	background-color: white;
	color: black;
	font-weight: bold;
	width: 280%;
	border-radius: 290486px;
}

.invite-button-menu:hover{
	color: #2EAF8F;
}

.hamburger-menu{
	display: none;
}

/*==========INTRO==========*/
.intro{
	background-color: #202225;
	width: 100%;
	height: 85vh;
	margin: 0 auto;
	padding: 15vh 0 0 0;
	position: relative;
	text-align: center;
	color: white;
}

.intro-title{
	font-size: 300%;
	font-weight: bold;
	padding: 1%;
}

.intro-text{
	margin: 0 25vw;
	font-size: 155%;
}

/*==========WAVES==========*/
.ocean{
	width:100%;
	position:absolute;
	bottom:0;
	left:0;
}

.wave-up{
	background: url(https://heikos.xyz/files/lithium/wave_up.svg) repeat-x; 
	position: absolute;
	top: -160px;
	width: 9600px;
	height: 250px;
}

.wave-down{
	background: url(https://heikos.xyz/files/lithium/wave_down.svg) repeat-x; 
	position: absolute;
	width: 9600px;
	height: 250px;
}

.wave-end{
	background: url(https://heikos.xyz/files/lithium/wave_end.svg) repeat-x; 
	position: absolute;
	width: 9600px;
	height: 250px;
}

/*========COMMANDS=========*/
.features{
	background-color: #2EAF8F;
	position: relative;
	width: 100%;
}

.features-list{
	list-style-type: none;
	padding: 0 0 1% 13%;
}

span{
	display: none;
}

.c-command{
	list-style-type: none;
	text-align: right;
	width: 18.5%;
	font-weight: bold;
	letter-spacing: -1.5px;
}

.c-description{
	list-style-type: none;
	text-align: left;
	padding-left: 2%;
	width: 79.5%;
	letter-spacing: -1.5px;
}

.command-opener{
	font-size: 180%;
	cursor: pointer;
	text-align: left;
	padding: 10px 0;
	border: none;
	margin: 20px 0 0 0;
	background-color: white;
	color: black;
	font-weight: bold;
	width: 74.3vw;
	border-radius: 290486px 290486px 290486px 290486px;
	height: 8vh;
}

.command-opener ul{
	list-style-type: none;
}

.command-opened{
	background-color: #ffffff;
	width: 74.3vw;
	font-size: 160%;
	padding: 0 0 1.5vh 0;
	border-radius: 0 0 3vh 3vh;
}

.command-opened li{
	float: left;
}

.openers{
	display: flex;
    flex-wrap: wrap;
}

.opener-title{
	float: left;
	padding-left: 1vw;
	width: 71vw;
}

/*=========ENDING==========*/
.final{
	background-color: #202225;
	height: 12vh;
	padding-top: 30vh;
}

.invite-button{
	text-decoration: none;
	position: relative;
	margin: 0 0 0 42.5vw;
	padding: 1vw 2vw 1vw 2vw;
	border: none;
	background-color: white;
	color: black;
	font-weight: bold;
	font-size: 3vh;
	border-radius: 290486px;
}

.invite-button:hover{
	color: #2EAF8F;
}

.wave-end{
	height: 20vh;
}

.end{
	background-color: #2f3136;
	height: 11vw;
	padding-top: 20vh;
	color: #ffffff88;
}

.end-display{
	list-style-type: none;
	display: inline-block;
	width: 100vw;
}

.end-name{
	list-style-type: none;
	float: left;
	margin: 1.5% 0 0 13%;
	width: 14%;
	padding-right: 40%;
}

.end-name li:hover{
	color: #FFFFFFFF
}

.end-menu{
	list-style-type: none;
	text-align: right;
}

.end-menu a{
	text-decoration: none;
	color: #ffffff88;
	float: right;
	margin-right: 13%;
	width: 7%;
}

.end-menu a:hover{
	color: #FFFFFFFF;
}

.end-title{
	font-weight: bold;
	font-size: 120%;
}
}