/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* ==================== BLOG STUFF ==========================*/

* {
	box-sizing: border-box;
}

p {
	color: antiquewhite;
}

body {
	font-family: Verdana;
	color: rgb(183, 226, 126);
	background-color: rgba(36, 36, 36);
	background-image: url("../img/10-6-doodle-med.gif");
}

/* Header/Blog Title */
.header {
	padding: 30px;
	font-size: 40px;
	text-align: center;
	background: rgb(0, 0, 0);
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
	float: left;
	width: 75%;
}

/* Right column */
.rightcolumn {
	float: left;
	width: 25%;
	padding-left: 20px;
}

/* Fake image */
.fakeimg {
	width: 100%;
	padding: 20px;
	background-color: #000000;
}

/* Add a card effect for articles */
.card {
	padding: 20px;
	margin-top: 20px;
	background-color: rgba(15, 15, 15, 0.75);
}

/* Clear floats after the columns */
.row:after {
	clear: both;
	display: table;
	content: "";
}

/* Footer */
.footer {
	padding: 20px;
	margin-top: 20px;
	text-align: center;
	background: #161616;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
	.leftcolumn,
	.rightcolumn {
		width: 100%;
		padding: 0;
	}
}

/* My customisations to the blog stuff */
.card {
	border: 10px double rgb(59, 184, 28);
}

/* ==================== END BLOG STUFF ====================*/

* {
	margin: 0;
}

.hamburger {
	float: left;
	cursor: pointer;
	border-radius: 10px;
	/*border: 2px solid rgba(255, 255, 255, 0.5);
  margin: auto;*/
	transition: 0.3s;
}

/* The sidebar menu */
.sidenav {
	position: fixed; /* Fixed Sidebar (stay in place on scroll) */
	top: 0; /* Stay at the top */
	left: 0;
	z-index: 1; /* Stay on top */
	width: 0px; /*will be changed with javascript */
	height: 100%; /* Full-height: remove this if you want "auto" height */
	overflow-x: hidden; /* Disable horizontal scroll */
	background-color: rgba(15, 15, 15, 0.5); /* Black */
	transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
	/*padding: 6px 8px 6px 16px;*/
	display: block;
	/*font-size: 25px;*/
	color: #818181;
	/*padding: 6px 8px 6px 16px;*/
	text-decoration: none;
	transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
	font-size: 20px;
	color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
	position: absolute;
	top: 0;
	right: 25px;
	margin-left: 50px;
	font-size: 36px;
}

.hamburger {
	float: left;
	cursor: pointer;
}

.hamburger span:hover {
	color: white;
}

.main {
	width: 70%;
	margin: auto;
}

.title {
	text-align: center;
}

/* Style page content */
.chooseyourown {
	transition: margin-left 0.5s;
	margin-left: 0px; /* Same as the width of the sidebar */
	padding: 0px 10px;
	width: 50%;
	border: 3px double rgb(59, 184, 28);
	margin: auto;
	background-color: rgba(15, 15, 15, 0.75);
}

/* On smaller screens, where height is less than 450px, change the style of the sidebar (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
	.sidenav {
		padding-top: 15px;
	}
	.sidenav a {
		font-size: 18px;
	}
}
