

html { height: 100%; width: device-width; }

*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0; 
}

body {
	font-family: "Segoe UI", Verdana;
	color: #fff;
	font-size: 16px;
	letter-spacing: 0px; 

}

a {
	text-decoration: none;
	text-align:center;
}

.textbox { 
	margin: 5px;
	border: 1px solid #c4c4c4; 
	height: 40px; 
	width: 96%;
	font-size: 15px; 
	padding: 4px 4px 4px 4px; 
	border-radius: 4px; 
	-moz-border-radius: 4px; 
	-webkit-border-radius: 4px; 
	box-shadow: 0px 0px 8px #d9d9d9; 
	-moz-box-shadow: 0px 0px 8px #d9d9d9; 
	-webkit-box-shadow: 0px 0px 8px #d9d9d9; 
}

.textbox:focus { 
	outline: none; 
	border: 1px solid #7bc1f7; 
	box-shadow: 0px 0px 8px #7bc1f7; 
	-moz-box-shadow: 0px 0px 8px #7bc1f7; 
	-webkit-box-shadow: 0px 0px 8px #7bc1f7; 
} 
.button {
	margin: 10px;
	color: #ffffff;
	background: #000000;
	background-image: -webkit-linear-gradient(top, #333333, #111111);
	background-image: -moz-linear-gradient(top, #333333, #111111);
	background-image: -ms-linear-gradient(top, #333333, #111111);
	background-image: -o-linear-gradient(top, #333333, #111111);
	background-image: linear-gradient(to bottom, #333333, #111111);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border:none;
	text-align:center;
	cursor:pointer;
	font-size:16px;
	letter-spacing: 2px;
	padding:16px 10px;
	text-transform: uppercase;
}

.button:hover {
	background: #111111;
	background-image: -webkit-linear-gradient(top, #444444, #222222);
	background-image: -moz-linear-gradient(top, #444444, #222222);
	background-image: -ms-linear-gradient(top, #444444, #222222);
	background-image: -o-linear-gradient(top, #444444, #222222);
	background-image: linear-gradient(to bottom, #444444, #222222);
}

.header {
	//background-image: url('../img/header5.png') no-repeat center center fixed;
	max-height:400px;
	display: flex;
	width:100%;
	background-color:#000;
	position:relative;
	box-shadow: 0px 0px 40px #000; 
	-moz-box-shadow: 0px 0px 40px #000; 
	-webkit-box-shadow: 0px 0px 40px #000; 
}
.header_img {
	width: 100%;
	height: auto;
	width: auto\9; 
}
.menu {
	display: flex;
	position: relative;
	box-shadow: 0px 0px 10px #102;
	-moz-box-shadow: 0px 0px 10px #102;
	-webkit-box-shadow: 0px 0px 10px #102;
}
.menu_back {
	background-color: #000005;
	width:100%;
	//border-top:1px solid #000;
	border-bottom:2px solid #000;
	display: flex;
	justify-content: center;
	letter-spacing: 2px;
	height:60px;

}

.menu_text {
	color: #ddd;
	font-size:20px;
	text-transform: uppercase;
	margin:15px;
}
.menu_text:hover {
	color: #fff;
	text-shadow: 0px 0px 3px #888;
}

#mobile_menu { display: none; }

nav {
	position: absolute;
	bottom:9px;
	width: 60px;
	z-index:100;
	left:20px;
}
.dropdown-toggle {
	padding-top:20px;
	padding-left:10px;
	padding-right:10px;
	background: #111111;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: none;
	cursor: pointer;
	border: 1px solid #222222; 
	
}
ul.dropdown {
	list-style-type: none;
	display:none;
	position: absolute;
	margin-top: 10px;
	margin-left:10px;
	width:400px;
	padding: 0;
	border-radius: 0 0 .2em .2em;
	background-color: #111;

}
ul.dropdown a {
	text-transform: uppercase;
	padding:15px 55px 15px 25px;
	color:#fff;
	width:100%;
}

ul.dropdown li {
	padding:20px;
	border-bottom:1px solid #000;
}

.content {
	display: inline-block;
	position:relative;
	padding:30px;
	width:100%;
	background-image: url("../img/background.jpg");
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

.col1 {
	padding:30px;
	border-radius: 5px;
	width: 40%;
	float:left;
	border:1px solid #000;
	min-width:400px;
	margin:20px;
	box-shadow: 0px 0px 25px #000; 
	-moz-box-shadow: 0px 0px 25px#000; 
	-webkit-box-shadow: 0px 0px 25px #000;
	background-color: rgba(0,0,0, 0.5); 
}

.col2 {
	margin:20px;
	padding:10px;
	width: 50%;
	float:left;
	min-width:400px;
}
.col3 {
	padding:30px;
	width: 95%;
	float:left;
	min-width:400px;
	margin:20px;
}

.board {
	position:relative;
	display: inline-block;
	margin:50px 30px;
	-webkit-box-shadow: 0px 0px 15px #000;
	-moz-box-shadow: 0px 0px 15px #000;
	box-shadow: 0px 0px 15px #000;
	transition: all .2s ease-in-out;
	height:300px;
	cursor:pointer;
}

.board:hover {
	transform: scale(1.05);
	-webkit-box-shadow: 0px 0px 15px #333;
	-moz-box-shadow: 0px 0px 15px #333;
	box-shadow: 0px 0px 15px #333;
}

.board_text {
	margin: -5px 0px 0px 0px;
	-webkit-box-shadow: 0px 0px 15px #000;
	-moz-box-shadow: 0px 0px 15px #000;
	box-shadow: 0px 0px 15px #000;
	background-color: rgba(0,0,0, 0.3);
	border-bottom:1px solid #000;
	padding:5px;
	font-size:12px;
	width:100%;
}

.delete {
	padding:10px;
	position:absolute;
	right:0px;
	top:0px;
	font-size:25px;
	font-weight: bold;
	background-color: rgba(0, 0, 0, 0.7);
	box-shadow: 10px 0px 30px #000; 
	-moz-box-shadow: 0px 0px 30px #000; 
	-webkit-box-shadow: 0px 0px 30px #000;
	cursor:pointer;
}

.footer {
	margin-top:-20px;
	border-top:2px solid #000000;
	padding:40px;
	-webkit-box-shadow:  0px 0px 20px #200020;
	-moz-box-shadow: 0px 0px 20px #200020;
	box-shadow: 0px 0px 20px #200020;
	color:#eee;
	width:100%;
	position:relative;
	background-image: url("../img/footer_bg.png");
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

.popup {
	position:fixed;
	top:0; left:0; bottom:0; right:0;
	background-color: rgba(0,0,0, 0.5);
	display:none;
	z-index:100;
}

.cont_popup {
	position:fixed;
	left: 50%;
	top: 50%;
	-ms-transform: translate(-50%,-50%);
	-moz-transform:translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	 transform: translate(-50%,-50%);
	background-color:#000;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border:1px solid #000;
	box-shadow: 0px 0px 30px #000; 
	-moz-box-shadow: 0px 0px 30px #000; 
	-webkit-box-shadow: 0px 0px 30px #000;
}

.close_popup {
	box-shadow: none;
	font: bold 50px sans-serif;
	padding:5px 15px 5px;
	position: absolute;
	right: 0px;
	top: 0px;
	background-color: rgba(0,0,0, 0.8);
	cursor:pointer;
	color:#ddd;
	box-shadow: 10px 0px 30px #000; 
	-moz-box-shadow: 0px 0px 30px #000; 
	-webkit-box-shadow: 0px 0px 30px #000;
}
.close_popup:hover {
	padding:6px 16px 5px;
}

#upload_html, .timer {
	display:none;
}

#share-buttons {
	position: absolute;
	right: 50px;
	top:90px;
}
#share-buttons a {
	margin:5px;
}

@media screen and (max-width: 750px){
	#mobile_menu { display: inline; }
	.menu_text { display:none; }
}

@media screen and (max-width: 960px){
	.col1 { width:90%; }
}