.terminal{
	text-align: center;
	background-color: black;
	color: white;
	font-family: "Courier New";
	font-size: 16px;
	font-weight: 500;
	width: 100%;
	padding-bottom: 2%;
	padding-top: 2%;
}
h1{
	margin-top: 3%;
	display: flex;
	justify-content: center;
	margin-bottom: 1%;
	font-family: "Courier New";
	font-size: 20px;
	font-weight: bold;
}
.category:hover > .detail{
	display: block;
}
.category:hover > .logo{
	display: none;
}
.category:hover{
	transform: scale(1.02);
	transition-duration: .5s;
}
body{
	margin: 0;
}
.category{
	width: 15%;
	padding: 2%;
	margin: 2%;
	border: none;
	background-color: white;
	box-shadow: 0px 0px 30px 1px rgb(220,220,220);
	cursor: pointer;
	font-size: 15px;
}
.categoryTable.t{
	font-size: 20px;
}
#menu{
	display: inline-flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	overflow: hidden;
	height: max-content;
}
#projectsMenu{
	display: inline-flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	overflow: hidden;
	height: max-content;
	width: 100%;
}
.numOfProjects{
	font-size: 16px
}
#code{
	width: 75%;
	overflow: hidden;
	margin-top: 2%;
	height: max-content;
	margin-left: auto;
	margin-right: auto;

}
img{
	width: 100%;
}
.detail{
	display: none;
	width: 100%;
	font-size: 18px;
	line-height: 25px;
	font-family: Helvetica,Verdana,Arial, Geneva,"Lucida Grande","Lucida Sans Unicode",Tahoma,"Trebuchet MS",Calibri;
}
.infobtn{
	font-family: 'candara','Verdana','arial','courier new';
	font-size: 16px;
	color: white;
	background-color: black;
	border: 1px solid white;
	padding: 1%;
	padding-left: 4%;
	padding-right: 4%;
	cursor: pointer;
}
/*TOGGLE*/
input[type="checkbox"]{
	position: relative;
	width: 35px;
	height: 15px;
	-webkit-appearance:none;
	background: #c6c6c6;
	outline: none;
	border-radius: 10px;
	transition: .5s;
	box-shadow: inset 0 0 5px rgba(0,0,0,.2);
}
input:checked[type="checkbox"]{
	background: #03a9f4;
}
input[type="checkbox"]:before{
	content: '';
	position: absolute;
	width: 15px;
	height: 15px;
	border-radius: 15px;
	top: 0;
	left: 0;
	background: #fff;
	transition: .5s;
	transform: scale(1.1);
	box-shadow: 0 2px 5px rgba(0,0,0,.2);
	transition: .5s;
}
input:checked[type="checkbox"]:before{
	left: 20px;
}
/*TOGGLE END*/
.switchtr{
	text-align: center;
	color: white;
	font-size: 12px;
}
nav:hover  .switchtr{
	color: black;
}
.switch{
	display: table;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;
	margin-bottom: 0
	padding: 0;

}