body {
    margin: 0;
	width: 100%;
	font-family: arial;
	background-color: rgb(240,240,240);
	top: 0;
	left: 0;
}

/* ------------- navbar ------------ */

#navbar {
	width: 100%;
	height: 56px;
	position: fixed;
	top: 0;
	background-color: rgb(200,200,200);
	border-bottom: 2px solid rgba(50,50,50,0.7);
	z-index: 10;
}
#navbar li {
	width: 15%;
	height: 36px;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 1em;
	padding: 10px 0px;
	display: flex;
	float: right;
	border: 1px solid rgb(150,150,150);
	cursor: pointer;
	transition: 0.3s;
}
#navbar li:hover {
	background-color: rgb(170,170,170);
}
#navbar a {
	text-decoration: none;
	color: rgb(50,50,50);
}
#navbar ul {
	padding: 0;
	margin: 0;
}
#navbar img {
    padding-left: 30px;
	max-width: 50%;
	height: 100%;
	float: left;
	cursor: pointer;
}

/* ------------ banner ------------ */

#banner {
	background-color: rgba(10,10,10,0.9);
	display: inline-block;
	position: relative;
	padding: 20px 0;
	border-top: 4px solid rgba(100,100,100,0.5);
	width: 100%;
}
#banner p {
	margin: 15px 30px;
	color: white;
}
#banner button {
	position: absolute;
	bottom: 7px;
	right: 7px;
	background-color: rgb(200,200,200);
	padding: 5px 15px;
	cursor: pointer;
}
#banner a {
	color: springgreen;
	text-decoration: underline;
}

/* ------------ content ------------ */

#content {
    background-color: rgb(255,255,255);
	margin: 90px 10% 20px 10%;
	padding: 0px 0px 20px 0px;
	width: 80%;
    border: 1px solid rgb(200,200,200);
    border-radius: 15px;
	box-shadow: 0px 0px 5px rgb(100,100,100);
}
#version {
	padding: 5px 10px;
	background-color: rgb(100,100,100);
	color: yellow;
	border-radius: 3px;
}
#text, #cipherText {
    width: 80%;
    margin: 0 10%;
    padding: 10px 0 10px 0;
}
#textInput, #cipherTextInput {
    width: 100%;
    height: 250px;
}
#selectCipher {
	max-width: 100%;
}
#optionsCipher input {
	margin-left: 2px;
	margin-bottom: 5px;
}
#options {
	margin: 15px 0;
	padding-bottom: 10px;
	border-bottom: 1px solid rgb(230,230,230);
}
#optionsElem {
    border-bottom: 1px solid rgb(100,100,100);
    padding: 30px 20px 0px 20px;
}
.optionsItem {
	border-left: 5px solid rgb(200,200,200);
	padding: 2px 0px 2px 10px;
	line-height: 200%;
}
.optionNote {
	font-size: 0.8em;
	margin: 15px 0;
}
.textareaName {
	margin: 3px;
}
.note {
	padding: 0 0 2px 5px;
	border-left: 5px solid rgba(200,200,200,0.6);
	border-bottom: 2px solid rgba(200,200,200,0.6);
	border-radius: 0 0 0 3px;
}

#features {
	margin-top: 10px;
	border: 3px solid rgba(80,80,80,0.4);
	border-radius: 5px;
	padding: 10px 20px;
	max-height: 200px;
	overflow-y: scroll;
}
.feature {
	display: block;
	max-width: 60%;
	margin: 10px 0;
	padding: 5px 0 5px 15px;
	margin-left: 10px;
	color: rgb(240,240,240);
	border-left: 3px solid rgba(240,240,240,0.5);
	border-bottom: 3px solid rgba(240,240,240,0.5);
	border-radius: 0 0 0 8px;
}
.feature_detail {
	display: block;
	max-width: 60%;
	margin: 10px 0;
	padding: 5px 0 5px 20px;
	margin-left: 30px;
	color: rgb(250,250,180);
	border-left: 3px solid rgba(250,250,180,0.8);
	border-bottom: 3px solid rgba(250,250,180,0.8);
	border-radius: 0 0 0 5px;
}
.feature_title {
	padding: 5px 10px;
	background-color: rgb(100,100,100);
	border-radius: 3px;
}
.infoIcon {
	font-size: 0.8em;
	margin-left: 3px;
	padding: 2px 5px;
	border: 1px solid rgb(100,100,100);
	background-color: rgb(80,80,80);
	color: rgb(230,230,230);
	border-radius: 5px;
	cursor: pointer;
}
#textT, #cipherT, #textL, #cipherL {
	display: inline-block;
}
#textL, #cipherL {
	float: right;
	padding: 3px 5px;
	border: 1px solid rgb(220,220,220);
	background-color: rgb(230,230,230);
	border-radius: 5px;
}
#textMeta, #cipherTextMeta {
	margin-bottom: 5px;
}
#encodingWarning {
	color: red;
}
#encodingWarning a {
	color: rgb(80,80,80);
}
textarea {
	margin-left: 10px;
}

/* ------------ notes -------------- */

#notes {
	background-color: rgb(255,255,255);
	margin: 30px 10% 0px 10%;
	padding: 10px 0px;
	width: 80%;
    border: 1px solid rgb(200,200,200);
    border-radius: 15px;
	box-shadow: 0px 0px 4px rgb(100,100,100);
}
#notesElem {
	padding: 15px 5%;
}
#notesText {
	margin-top: 10px;
	width: 100%;
	height: 150px;
}

/* ------------ footer ------------- */

#footer {
	margin: 50px 0 0 0;
	padding: 20px 30px 0 30px;
	height: 150px;
	text-align: center;
	color: rgb(200,200,200);
	background-color: rgb(50,50,50);
}
#footer a {
	color: springgreen;
	background-color: rgb(50,50,50);
}
#footer span {
	width: 80%;
	margin: auto;
}

@media only screen and (max-width: 600px) {
	#navbar li {
		font-size: 0.7em;
	}
	#navbar img {
		padding-left: 5px;
		margin-top: 10px;
		height: 65%;
	}
    #textInput, #cipherTextInput {
        width: 100%;
        height: 100px;
    }
}