*{
	font-family: Arial, sans-serif;
	font-weight: bold;
	font-size: 1.02rem;
	box-sizing: border-box;
	color: white;
}

:root{
	--mainBackGroundColour: #1a1a1a;
	--SecondaryColour: black;
	--tertiaryColour: ;
}

body{
	padding: 0px 5vw;
	background-color: var(--mainBackGroundColour);
}

h2{
	font-size: 30px;
	margin:0px;
}

h3{
	font-size: 20px;
}

header{
	font-size:5vw;
	padding: 5px 0px;
	background-repeat:	no-repeat;
	background-size: 100%;
}

footer{
	color:white;
	padding:50px;
	background-color: var(--SecondaryColour);
	text-align: center;
}

.NavButton{
	display: block;
	width: 150px;
	text-align: center;
	background-color: inherit;
	border-radius: 20px;
	text-decoration: none;
}

a.NavButton:link, a.NavButton:visited{
	color: white;
}

a.NavButton:hover{
	background-color: #383838;
}

#aboutme{
	display: flex;
	margin: 50px 0px;
	padding: 10;
	color: white;
}

@media (orientation: portrait){
	#aboutme{
		flex-direction: column;
	}
}

#minigallery{
	display: grid;
	grid-template-columns: 25% 75%;
}

#minigallery > div{
	background: #101010;
	height: 40vw;
}

#minigalleryiconscontainer{
	display: flex;
	flex-direction: column;
	overflow: visible;
}

.minigalleryicon{
	position: relative;
	height:20%;
	object-fit: cover;
	width: 100%;
	transition: width 0.25s;
	z-index: 1;
}

.minigalleryicon:hover{
	width: 120%;
}

#galleryviewportcontainer{
	position: relative;
	overflow: hidden;
}

#minigalleryviewport{
	position: absolute;
	left: 0%;
	top: 0%;
	height: 100%;
	width: 100%;
	padding: 10px;
	object-fit: cover;
	filter: blur(0px);
	transition: width 0.25s, height 0.25s, left 0.25s, top 0.25s, filter 0.25s;
}

#galleryviewportcontainer:hover > #minigalleryviewport{
	left: -10%;
	top: -10%;
	height: 120%;
	width: 120%;
	filter: blur(5px);
}

#galleryviewportcontainer > p{
	position: absolute;
	opacity: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 50%;
	text-shadow: 2px 2px black;
	transition: opacity 0.25s;
}

#galleryviewportcontainer:hover > p{
	opacity: 1;
}
