/* Landscape-only overlay */
#rotateDeviceOverlay {
	display: none;
}

@media screen and (orientation: portrait) and (max-width: 767px) {
	#rotateDeviceOverlay {
		display: flex;
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background: #201E20;
		color: #DDC3A5;
		font-size: 5vw;
		align-items: center;
		justify-content: center;
		text-align: center;
		z-index: 9999;
		font-family: "Open Sans", sans-serif;
		padding: 5vw;
		box-sizing: border-box;
	}

	#content {
		display: none !important;
	}
}

body {
	background: #201E20;
	font-size: 1vw; /* okay to keep */
  }
  
  div {
	display: inline-block;
  }
  
  .projectImages {
	width: 30vw;
  }
  
  .descriptionText {
	display: inline-block;
	width: 35vw;
	color: #D08261;
	margin: 0 10vw;
	font-family: Open Sans, sans-serif;
  }
  
  .projectLinks {
	text-decoration: underline;
	color: lightskyblue;
  }
  
  .projectLinks:hover {
	color: hotpink;
  }
  
  .projectLinks:active {
	color: lightgreen;
  }
  
  #tetrisDiv {
	padding-top: 20vh;
	margin-left: 10vw;
	margin-bottom: 30vh;
  }
  
  #lorenzSystemDiv {
	text-align: right;
	margin-right: 10vw;
	padding-bottom: 30vh;
  }
  
  #mandelbrotSetDiv {
	margin-left: 10vw;
	margin-bottom: 20vh;
  }
  
  #juliaSetDiv {
	text-align: right;
	margin-right: 10vw;
	padding-bottom: 30vh;
  }
  
  #sineJuliaSetDiv {
	margin-left: 10vw;
	margin-bottom: 20vh;
  }
  
  #calculatorDiv {
	text-align: right;
	margin-right: 10vw;
	padding-bottom: 30vh !important;
  }
  
