body {
	background-color: #2d6f51;
}

#header {
	background-color: #40916c;
	border-bottom-color: #2d6f51;
}

#homeButton:hover {
	background-color: #2d6f51;
}

#content {
	overflow-y: scroll;
	padding-bottom: 40px;
}


#content .splitContainer {
	max-width: 1500px;
	margin: 0 auto;
}

#content .left {
	float: left;
	width: 60%;
}

#content .left .box {
	margin-right: 20px;
}

#content .right {
	float: left;
	width: 40%;
}

#content .right .box {
	margin-left: 20px;
}

@media only screen and (max-width: 1000px) {
	#content .left,
	#content .right {
		float: none;
		width: 100%;
	}
	
	#content .right {
		margin-top: 40px;
	}
	
	#content .left .box,
	#content .right .box {
		margin-right: 0;
		margin-left: 0;
	}
	
}

@media only screen and (max-width: 550px) {
	#content .left .box,
	#content .right .box {
		font-size: 80%;
	}
}


#content .textContent {
	text-align: left;
	font-family: 'Raleway';
	font-size: 30px;
	word-wrap: break-word;
}


#content .copyButton {
	margin-top: 30px;
}

#content .copyButton .bi-check2 {
	display: none;
}

#textToCopy {
	display: none;
}

#content .validity {
	font-weight: 300;
	letter-spacing: 2px;
}

#content .validity b {
	font-weight: 500;
}

#content .validity .button {
	color: white;
}

#content .validity svg.bi-exclamation-triangle {
	height: 50px;
	display: block;
	margin: 0 auto;
	margin-bottom: 20px;
}

#content .deleteButton {
	margin-top: 30px;
}

#content .deleteButton a {
	border-color: #991e28;
	background-color: #E63946;
	background: linear-gradient(180deg, rgba(230,57,71,1) 0%, rgba(179, 40, 52, 1) 100%);
}

@media only screen and (max-width: 550px) {
	#content .button {
		font-size: 20px;
		padding-left: 50px;
	}
	
	#content .button svg {
		height: 20px;
		left: 20px;
	}
}



#content .fileContent {
	text-align: left;
	font-family: 'Raleway';
	font-size: 30px;
	text-align: center;
	font-size: 20px;
}

#content .fileContent img {
	max-width: 100%;
	max-height: 500px;
	display: block;
	margin: 0 auto;
	border-radius: 20px;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

#content .fileContent svg {
	height: 150px;
	display: block;
	margin: 0 auto;
}


#content .fileContent .showAllFilesLink a {
	text-decoration: none;
	font-size: 80%;
}


#content .fileContent .fileList {
	display: none;
	margin-top: 40px;
}

#content .fileContent .fileList .file {
	margin-top: 20px;
	position: relative;
	text-align: left;
	background-color: rgba(0, 0, 0, 0.2);
	padding: 20px;
	padding-right: 90px;
	border-radius: 10px;
	min-height: 30px;
}

#content .fileContent .fileList .file span {
	word-wrap: break-word;
}

#content .fileContent .fileList .file img {
	display: inline-block;
	margin-top: 20px;
	width: 50%;
	max-width: 400px;
	max-height: 600px;
}

#content .fileContent .fileList .file .button {
	position: absolute;
	display: block;
	padding: 0px;
	height: 30px;
	width: 50px;
	box-sizing: border-box;
	right: 20px;
	border-width: 2px;
}

#content .fileContent .fileList .file .button svg {
	height: 20px;
	left: 50%;
}



