/* Stylesheet for oscarfoy.ca */
html, body {
	margin: 0;
	padding: 0;
	
	background-color: black;
}

/* Navbar */
.nav {
	width: 100%;
	height: 7%;
	
	display: inline-block;
	overflow: hidden;
	
	background-color: white;
	
	ul {
		list-style-type: none;
		margin: 0;
		padding: 0;
	}
	
	img {
		height: 50%;
		margin: 1%;
		float: left;
	}
	
	a {
		height: 100%;
		float: left;
		text-align: center;
		text-decoration: none;
		padding: 1%;
		color: black;

		font-family: "Archivo Black", sans-serif;
 		font-weight: 700;
  		font-style: normal;
	}
	
	a:hover {
		background-color: #0ff;
		color: white;
	}
	
	.active {
		background-color: #000;
		color: white;
	}
}

/* Splash */
.splash {
	width: 100%;
	height: 93%;
	
	display: flex;
	text-align: center;

	background-color: black;
	
	img {
		height: 70%;
		margin: auto;
		object-fit: contain;
	}

	h1 {
		color: #fff;

		margin: auto;

		animation: splashtext 1s;

		font-family: "Archivo Black", sans-serif;
		font-weight: 700;
		font-style: normal;
		font-size: 50px;
	}
}

/* Spacer */
.spacer {
	width: 100%;
	height: 0.5%;
	
	margin: 0;
	padding: 0;

	background-color: #0ff;
}

/* Body */
.main-body {
	display: flex;
	align-items: stretch;
}

/* Body */
.body {
	margin-left: 2.5%;
	margin-right: 2.5%;
	
	background-color: white;
	
	height: 100%;
	
	display: flex;
	flex-direction: column;
	flex-wrap: no-wrap;
	justify-content: stretch;

	p {
		font-family: "Urbanist", sans-serif;
  		font-optical-sizing: auto;
  		font-weight: 400;
  		font-style: normal;
		font-size: 16px;

		line-height: 1.5;
	}

	a {
		color: #000;
		text-decoration: none;
		font-weight: 600;
	}
}

.body-row {	
	display: flex;
	flex-direction: row;
	
	justify-content:space-between;
	
	margin-top: 1%;
	margin-bottom: 1%;
	
	height: 100%;
	
	.one {
		padding: 10px;
		width: 42%;
	}

	.two {
		width: 5%;
	}
	
	.three {
		background-color: black;
		width: 42%;
		margin: 0;
	}
	
	.four {
		background-color: black;
		width: 100%;
		a {
			width: 100%;
			height: auto;
			margin: auto;
			text-decoration: none;
			
			h1 {
				width: 100%;
				margin: auto;
				text-align: center;
				padding: 1%;
				color: white;

				font-family: "Archivo Black", sans-serif;
 				font-weight: 800;
  				font-style: normal;
			}

			h2 {
				width: 100%;
				margin: auto;
				text-align: center;
				padding: 1%;
				color: white;

				font-family: "Urbanist", sans-serif;
  				font-optical-sizing: auto;
  				font-weight: 400;
  				font-style: normal;
			}
		}
	}
}

.v-center {
	position: relative;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* Full pages */
.page {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;

	background-color: #fff;

	text-align: center;

	h1 {
		font-family: "Archivo Black", sans-serif;
 		font-weight: 800;
  		font-style: normal;
		margin: 0;
		color: #fff;
		background-color: #000;
	}

	h2 {
		font-family: "Urbanist", sans-serif;
  		font-optical-sizing: auto;
  		font-weight: 400;
  		font-style: normal;
	}

	a {
		text-decoration: none;
		color: #0ff;

		h2 {
			margin: auto;
			width: 30%;
		}
	}
}

/* Animations */
@keyframes splashtext {
	from {
		color: rgba(255, 255, 255, 0);
		padding-top: 3%;
	}
	to {
		color: #fff;
		padding-top: 0;
	}
}