
:root {
	--left-margin-width: 20%;
	--main-width: 70%;
	--left-width-in-main: 75%;
}

body {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 18px;
}

a {
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
}

#main {
	margin-bottom: 400px;
	max-width: var(--main-width);
	margin-left: var(--left-margin-width);
	margin-right: calc(100% - var(--left-margin) - var(--main-width))%;
	line-height: 28px;
}

#left {
	width: var(--left-width-in-main);
	display: inline-block;
	/*margin-top: 100px;*/
	padding-top: 40px;
}

#right {
	vertical-align: top;
	font-size: 18px;
	display: inline-block;
	padding-left: 30px;
	padding-top: 40px;
	position: fixed;
	top:0;
}

#pong_pic {
	border-bottom: 1px solid rgb(24,131,215)
}

.toggle_picture {
	color: orange;
	cursor: pointer;
	/* Make it so clicking won't have any chance of (annoyingly) selecting the text */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.toggle {
	/*margin-left: 10px*/
	padding-left: 15px;
	border-left: 1px solid orange;
	display: none;
}

.navlink {
	color: blue;
}

.app_img {
	/* Should be smaller width on desktop and full on mobile */
	width: 40%;
}

.halfbreak {
	line-height: 1px
}

a:visited.alwaysBlue {
	color:blue;
}

@media (max-width:800px) {
	#main {
		margin-left: 0px;
		margin-right: 0px;
		max-width: 100%;
	}
	#right {
		display: none;
	}
	#left {
		width: 100%;
		margin-top: 30px;
		display: block;
	}
	.app_img {
		/* Should be smaller width on desktop and full on mobile */
		width: 80%;
	}
}

#current_page_sidebar {
	/*color: white;
    background-color: #292929;
    border-radius: 10px;
    padding-left: 8;
    padding-right: 8;*/
    padding-left: 5px;
    border-left: 3px solid black;
}

#menu_header {
	color: black;
  	text-decoration: none; /* no underline */
}