@charset "utf-8";
/* CSS Document */
/********* CSS RESETS **********/

img {
	max-width:100%;
	max-height: 100%;
}


h1, h2, h3, p, ul, ol {
	margin: 0;
	padding: 0;
}

/********* End CSS Reset *********/
#container {
	overflow: hidden;
	position: relative;
	display: flex;
	flex-flow: column;
}

#container div {
	flex: 1;
	margin: 10px;
	padding: 50px 20px;
	display: flex;
	flex-flow: column;
	align-items: center;	
}

#container div p {
    padding: 20px 0px;
    color: white;
}

#top1 {
	width: 120%;
	height: 45vw;
	transform: rotate(-20deg);
	transform-origin: top right;
	background-color: #750000;
	
	position: absolute;
	top: -10px;
	right: -10px;
	z-index: -1;
}

#top2 {
	width: 120%;
	height: 45vw;
	transform: rotate(20deg);
	transform-origin: top left;
	background-color:rgba(0,0,0,0.5);
	
	position: absolute;
	top: -10px;
	left: -10px;
	z-index: -1;
}


section{ padding: 30px 15px; }

#software { background:#353535; }



.grid {
	padding: 30px 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px;
}


/********** Typography Rules **********/



h2 {
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
	padding-bottom: 10px;
}

p { line-height: 1em; }

#software h2 { color:#ffffff; }


/************ Card Flip Styles **************/

.flip-container { perspective: 1000px; }
	
.flip-container.hover .back {
	transform: rotateX(0deg);
}

.flip-container.hover .front {
    transform: rotateX(180deg);
}

.flip-container, .front, .back {
	width: 100%;
}

.flipper {
	transition: 0.6s;
	transform-style: preserve-3d;

	position: relative;
	height: 0;
	padding-top:100%;
}

.front, .back {
	-webkit-backface-visibility: hidden; /*still needed for safari & android*/
	backface-visibility: hidden;
	transition: 0.6s;
	transform-style: preserve-3d;

	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
}

.front { transform: rotateX(0deg); z-index: 2; }

.back {
	transform: rotateX(-180deg);
	background:#750000;
	padding:10px;
	box-sizing: border-box;
}

.front img {
	display:block;
}

.title {
	text-transform:uppercase;
	font-size: 16px;
	color: #C0C0C0;
	font-weight: bold;
}

.name {
	margin-bottom:10px;
	font-weight:700;
	color:#ffffff;
}

/************ End Card Flip Styles **************/

body {
	background-color: #353535;
}

body, html {
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	width: 100%;
	height: 100%;
}

button{
	display: flex;
	background-color: #750000;
    color: white;
    font-size: 1em;
    padding: 10px 15px;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Cinzel', serif;
    font-style: normal;
    font-weight: bold;
    border-radius: 15px;
	margin: 50px auto;
	width: 100px;
	cursor: pointer;	
}

button:hover{
	box-shadow: 0 0 15px 3px #fff;
	background-color: #353535;
	color: #fff;
}

header {
    align-items: center;
    display: block;
    background-color: #353535;
    border-bottom: 5px solid #A3A3A3;
    border-top: 5px solid #A3A3A3;
    padding-top: 10px;
    padding-bottom: 10px;
}

#container1 header h1 {
    margin: auto;
    flex: 1;
    background-color: #353535;
    color: #FFFFFF;
    text-align: center;
    padding: 20px;
    font-size: 2em;
	font-family: 'Cinzel', serif;
	font-style: normal;
	font-weight: normal;
}

#container1 header p {
	background-color: #353535;
    color: #FFFFFF;
    text-align: center;
    font-size: 2em;
	padding: 10px;
}


#container1 header #logo {
	width: 100%;
    flex: 1;
}

.front img {
    display: block;
}

#container2 {
    display: block;
	width: 100%;
}
#container2 #s1 {
	flex: 1;
    background-color: #FFFFFF;
}
#container2 #s1 p {
	padding: 5px;
	font-size: 1.25em;
	font-weight: bold;
	font-style: italic;
	text-align: center;
    color: #000000;
}

#container2 #s2 {
	flex: 1;
	background-color: #750000;
}
#container2 #s2 p {
	padding: 5px;
	font-size: 1.25em;
	font-weight: bold;
	font-style: italic;
	text-align: center;
    color: #FFFFFF;
}

#container3 {
    display: flex;
	border-bottom: solid 5px #757575;
	border-top: solid 5px #757575;
	background-color: #353535;
}

#container3 p {
	flex: 1;
	padding: 20px 10px;
	text-align: center;

}

#container3 p a {
	color: white;
}

#container3 p a:hover {
	color: #CC1600;
	text-decoration: none;
}

#iframe .video {
	width: 100%;
}


.about {
    font-family: italianno,vivaldi,edwardian,serif;
    font-style: normal;
    font-weight: 400;
    font-size: 3rem;
    text-align: center;
    color: #FFFFFF;
    padding-top: 20px;
    padding-bottom: 20px;
}

.aboutMain {
    padding-bottom: 30px;
}

.aboutP {
    color: #FFFFFF;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 0px;
	font-size: 1.25em;
}
.aboutImg {
	padding-top: 20px;
    padding-left: 30px;
	width: 300px;

}

.page #memorial #memorial-parent {
	display: block; 
}

#memorial #memorial-parent #child2 {
	padding: 20px;
	display: flex;
}

#memorial #memorial-parent #child1 {
	display: flex;
	flex-direction: column;
	flex: 1.5;
	padding-left: 20px;
}
.page #memorial {
	background-color: #353535;
	padding-bottom: 30px;
}
#memorial-parent #child2 img {
	margin: auto;
	width: 70%;
	padding: 20px;
}

.page #memorial #signature {
	color: #FFFFFF;
	padding-left: 40px;
	padding-top: 40px;
}
.page #memorial #office {
	color: #FFFFFF;
	padding-left: 40px;
	padding-top: 40px;
}

.nav {
	font-family: 'Cinzel', serif;
	background-image: radial-gradient(circle at center, #899dc4, #495d84);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 50px 0px;
	overflow: hidden;
	justify-content: center;
	align-items: center;
	background: radial-gradient(ellipse at bottom, #1b2735, #090a0f);
	margin: auto;

}

.all {
	display: flex;
	perspective: 10px;
	transform: perspective(300px) rotateX(20deg);
	will-change: perspective;
	perspective-origin: center center;
	transition: all 1.2s ease-out;
	justify-content: center;
	transform-style: preserve-3d;
}

.all:hover {
	perspective: 3000px;
	transition: all .5s ease-in;
	transform: perspective(10000px) rotateX(0deg);
}

.all:hover .text {
	opacity: 0;
}

.all:hover > div {
	opacity: 1;
	transition-delay: 0s;
}

.all:hover .explainer {
	opacity: 1;
}

.left, .center, .right, .lefter, .righter {
	pointer-events: auto;
	width: 40px;
	height: 40px;
	transform-style: preserve-3d;
	border-radius: 10px;
	border: 1px solid #fff;
	box-shadow: 0 0 20px 5px rbga(100, 100, 255, 0.4);
	opacity: 0;
	transition: all .3s ease;
	transition-delay: 1s;
	position: relative;
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	background-color: #353535;
	cursor: pointer;
	/*background-blend-mode: color-burn;*/
}

.left:hover, .center:hover, .right:hover, .lefter:hover, .righter:hover, nav ul li:hover {
	box-shadow: 0 0 15px 3px #fff;
	background-color: #757575;
}




.lefter {
	transform: translateX(-60px) translateZ(-50px) rotateY(-10deg);
	background-image: url("assets/images/256px-Adobe_Systems_logo_and_wordmark.svg.png");
	background-size: 60%;
}

.left {
	transform: translateX(-30px) translateZ(-25px) rotateY(-5deg);
	background-image: url("assets/images/Windows_logo_-_2012_(red).svg");
	background-size: 60%;
}

.center {
	opacity: 1;
	background-image: url("assets/images/logoGIF400x225.gif");
}

.right {
	transform: translateX(30px) translateZ(-25px) rotateY(5deg);
	background-image: url("assets/images/volunteer.png");
}

.righter {
	transform: translateX(60px) translateZ(-50px) rotateY(10deg);
	background-image: url("assets/images/donate2.png");
}

.explainer {
	font-size: 0em;
	font-family: 'Cinzel', serif;
	font-style: normal;
	font-weight: normal;
	color: #fff;
	transition: all .6s ease;
	width: 100%;
	height: 100%;
	background-color: #353535;
	background-image: url("assets/images/logoGIF400x225.gif");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	text-align: center;
	border-radius: 10px;
	text-shadow: 0 0 10px rgba(255, 255, 0.8);
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin: auto;
}	

.explainer:hover {
	background-image: url("assets/images/logo400x270.png");
	background-color: #757575;
	font-size: 0em;
	background-size: 100%;
}

nav ul, nav ol {
	list-style-type: none;
}

a {
	text-decoration: none;
}

nav {
	background: #353535;
}


nav ul li {
	flex: 1;
	width: 100%;
}

nav ul li a {
	display: block;
	text-transform: uppercase;
	line-height: 40px;
	border-right: 20px solid #750000;
	text-align: center;
	color: #ffffff;
	font-size: 1em;
	font-family: 'Cinzel', serif;
	font-style: normal;
	font-weight: bold;
}

nav ul li a:hover {
	color: #750000;
}

form {
	margin: auto;
	display: flex;
	flex-direction: column;
}

#sendbtn {
    background-color: #750000;
    color: white;
    font-size: 1em;
    padding: 10px;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Cinzel', serif;
    font-style: normal;
    font-weight: bold;
    border-radius: 15px;
	margin: 50px auto;
	width: 70px;
}

#sendbtn:hover {
	box-shadow: 0 0 15px 3px #fff;
	background-color: #353535;
	color: #fff;
	
}

label {
	padding: 20px 0px;
	color: white;
	font-size: 1em;
}


form {
	margin: 0px 30px; 
}

#logo {
	display: flex;
	padding: 20px 0px;
}

#adobe, #volunteer, #microsoft, #donate, #GIF {
	margin: auto;
	height: 100%;
}

#microsoft {
	
}


#intro {
	height: 100px;
	background-color: #353535;
	display: flex;
	align-items: center;
	justify-content: center;
}

#intro p {
	font-family: 'Cinzel', serif;
	color: #fff;
	padding: 20PX;
	text-align: center;
	font-weight: bold;

	
}
@media only screen and (min-width: 600px) {
	
	#container {
		overflow: hidden;
		position: relative;
		display: flex;
		flex-direction: row;
	}
	
	.grid {grid-template-columns: 1fr 1fr 1fr 1fr;}

	header {
		display: block;
	}

	.page #memorial #memorial-parent {
	display: flex;
	align-items: center;
	margin: 0;
	}

	#memorial #memorial-parent #child2 {
		display: flex;
		flex-direction: column;
		flex: 1;
		justify-content: flex-end;
		padding-right: 20px;
	}
	#memorial #memorial-parent #child1 {
		display: flex;
		flex-direction: column;
		flex: 1.5;
		padding-left: 20px;
	}
	.page #memorial {
		background-color: #353535;
		padding-bottom: 30px;
	}
	#memorial-parent #child2 img {
		margin: auto;
		width: 75%;
	}

	.page #memorial #signature {
		color: #FFFFFF;
		padding-left: 40px;
		padding-top: 40px;
	}
	#container2 {
		display: flex;
		width: 100%;
	}
	#container2 #s1 {
		flex: 1;
		background-color: #FFFFFF;
	}
	#container2 #s1 p {
		padding: 5px;
		font-size: 1.25em;
		font-weight: bold;
		font-style: italic;
		text-align: center;
		color: #000000;
	}

	#container2 #s2 {
		flex: 1;
		background-color: #750000;
	}
	#container2 #s2 p {
		padding: 5px;
		font-size: 1.25em;
		font-weight: bold;
		font-style: italic;
		text-align: center;
		color: #FFFFFF;
	}

	.left, .center, .right, .lefter, .righter {
		width: 80px;
		height: 80px;
	}
	.explainer {
		font-size: 1em;
	}	
	.explainer:hover {
		font-size: 0em;
		background-size: 100%;
	}
	nav ul, nav ol {
		list-style-type: none;
	}

	a {
		text-decoration: none;
	}

	nav {
		background: #353535;
	}

	nav ul {
		display: flex;
	}

	nav ul li {
		flex: 1;
		width: 100%;
	}

	nav ul li a {
		display: block;
		text-transform: uppercase;
		line-height: 40px;
		border-right: 20px solid #750000;
		text-align: center;
		color: #ffffff;
		font-size: 1em;
		font-family: 'Cinzel', serif;
		font-style: normal;
		font-weight: bold;
	}

	nav ul li a:hover {
		color: white;
	}
	nav ul li:last-of-type a {border: none;}
	
	#logo {
		width: 200px;
	}

}

@media only screen and (min-width: 960px) {
	.form {
		width: 700px;
	}
	
	#logo {
		width: 400px;
	}
	
	footer {
		width: 960px;
	}
	#logo {
		width: 100%;
	}
	
	.page {
		width: 960px;
		margin: auto;
	}
	
	header {
		display: flex;
	}
	
	header h1 {
		flex: 1;
	}
	
	#logo {
		flex: 2;
	}
	
	header p {
		flex: 1;
	}

	.nav {
		margin: auto;
		width: 960px;
	}
	.left, .center, .right, .lefter, .righter {
		width: 150px;
		height: 150px;
	}

	.explainer {
		font-size: 1.5em;
	}
	
	.explainer:hover {
		font-size: 0em;
		background-size: 100%;
	}
	
	nav {
		margin: auto;
		width: 960px;
	}
}