html,
body {
	height: 100%;
	margin: 0px;
	padding: 0px;
}

body {
	background-image: url("images/background.jpg");
	background-repeat: repeat-x;
	background-size: cover;

	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
}

#container {
	position: absolute;
	width: 100%;
	height: 80%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

#btn_all_posts,
#btn_create_post {
	background-color: #cfb53b;
	color: black;
	font-weight: bold;
	height: 40px;
	cursor: pointer;
	font-size: larger;
	border: 0.4px solid white;
	padding: 5px 15px;
	margin: 4px 5px;

	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12),
		0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0, 0, 0); /* Fallback color */
	background-color: rgba(0, 0, 0, 0.7); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
	background-color: #fefefe;
	margin: 5% auto; /* 15% from the top and centered */
	padding: 20px;
	border: 1px solid #888;
	width: 40%; /* Could be more or less, depending on screen size */
}

.sign_in_modal_footer {
	margin-top: 30px;
	font-family: sans-serif;
	font-weight: bold;
	text-align: center;
}

/* The Close Button */
.close {
	color: #818181;
	float: right;
	font-size: 40px;
	font-weight: bolder;
}

.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

.modal_header {
	font-family: "Roboto Condensed";
	font-size: 20px;
	text-align: center;
}

.input_container {
	margin: 20px 0px;
	font-family: "Roboto Condensed";
}

.input_container label {
	font-weight: bold;
}

#compose_post_title {
	width: 50%;
}

.input_container input {
	margin-top: 5px;
	background-color: #f1f1f1;
	padding: 5px 15px;
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	border: none;
	height: 40px;
}

.input_container textarea {
	margin-top: 5px;
	background-color: #f1f1f1;
	padding: 5px 15px;
	width: 100%;
	font-family: inherit;
	font-size: inherit;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	border: none;
	height: 200px;
}

#btn_sign_up_submit,
#btn_sign_in_submit {
	background-color: #5eb762;
	width: 100%;
	color: white;
	box-sizing: border-box;
	font-size: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	height: 40px;
	cursor: pointer;
	border: none;
}

#btn_create_post_submit {
	background-color: #5eb762;
	width: 15%;
	color: white;
	margin: 0 auto;
	display: block;
	box-sizing: border-box;
	font-size: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	height: 35px;
	cursor: pointer;
	border: none;
}
