body {
	background-image: url("../Photos/Landscape.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 1000vm;
	font-family: Times New Roman, sans-serif;
}

button {
	background-color: #ADD8E6;
	cursor: pointer;
	border: 0px;
	padding: 10px;
	font-size: 16px;
}

button:hover {
	color: purple;
}


.Electronic {
	justify-content: center;
	align-items: center;
	max-width: 50%;
	height: auto;
}

.Physical {
	justify-content: center;
	align-items: center;
	max-width: 50%;
	height: auto;
	transform: rotate(-90deg);
}

.grid {
	border: 2px solid black;
	display: grid;
	grid-template-columns: 1fr;
	text-align: center;
	width: 80%;
	max-width: 800px;
	margin: 20px;
}

.col1 {
	background-color: #C7EA46;
	display: grid;
	grid-template-rows: repeat(4, auto);
	border: 2px solid black;
	justify-items: center;
}

.header {
	position: relative;
	z-index: 1000;
}

.menu-toggle {
		display: none;
}

.hamburger {
	font-size: 30px;
	color: black;
	cursor: pointer;
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 1000;
}

.navbar {
	display: none;
	background-color: #ADD8E6;
	position: absolute;
	top: 70px;
	left: 0;
	width: 100%;
	z-index: 999;
	border: 2px solid black;
	
}

.navbar ul {
	list-style-type: none;
	padding: 0;
}

.navbar ul li {
	border-bottom: 2px solid black;
}

.navbar ul li a {
	color: white;
	padding: 15px;
	text-decoration: none;
	display: block;
}

.navbar ul li a:hover {
	background-color: #575757;
}

.menu-toggle:checked + .hamburger + .navbar {
	display: block;
}