/* 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." */

* {
	margin: 0;
}

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

.chooseyourown {
	color: antiquewhite;
}

.hamburger {
	padding: 5px 5px;
	font-size: 30px;
	background-color: rgba(19, 19, 19, 0.7);
}

/* 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(19, 19, 19, 0.75);
	transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
	/* 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: antiquewhite;
	/*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;
	border-radius: 10px;
	/*border: 2px solid rgba(255, 255, 255, 0.5);
  margin: auto;*/
	transition: 0.3s;
}

.hamburger span:hover {
	color: white;
}

.main {
	width: 70%;
	padding-bottom: 30px;
	margin: auto;
	background-color: rgba(19, 19, 19, 0.75);
	border-radius: 10px;
}

.title {
	text-align: center;
}

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

.chooseyourown p {
	margin-left: 10px;
}

/* 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;
	}
}

/* Footer */
.footer {
	padding: 20px;
	margin-top: 20px;
	text-align: center;
	background-color: rgba(19, 19, 19, 0.75);
}

a {
	color: rgb(255, 191, 53);
	transition: 0.3s;
}

.chooseyourown a:hover {
	font-size: 20px;
	color: #f1f1f1;
	transition: 0.3s;
}

dd {
	display: list-item;
	padding-inline-start: 1ch;
	list-style-type: "";
	border-left-width: 5px;
}

.flipimage {
	transform: scaleX(-1);
}
