﻿@charset "UTF-8";
/* CSS Document */

/* Style the header with a grey background and some padding */
*{
	margin: 0;
	padding:0;
}

body{
	background:black;
}

.subpage {
	position: fixed;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100vh;
	background: white;
}
.twoD, .threeD, .Mixed {
	position: relative;
	display: flex;
	padding: 30px;
	margin: 0;
	transition: 0.3s;
	flex: 1;
	background-color: black;
	/*image link here*/
	background-image: url("");
	opacity: 100;
}

	.twoD:hover, .threeD:hover, .Mixed:hover{
	opacity: 0;
	}

	.twoD:active, .threeD:active, .Mixed:active{
	opacity: 0;
	}

img.concept{
	mix-blend-mode: difference;
	max-width: 90%;
	align-self: flex-end;
	margin-left: auto;
	opacity: 100;
}

	.row{
		display: flex;
		flex-direction: row;
		width: 100%;
		height: 100vh;
	}




/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width : 777px ){
	.row{
		display: flex;
		flex-direction: column;
	}

	.twoD, .threeD, .Mixed{
		display: flex;
		opacity: 100;
		padding: 10px;
	}

	img.concept{
		align-self: flex-end;
		margin-left: auto;
	}	
}


