/*--- INCLUDES AND OVERRIDES ---*/
@font-face {
	font-family: faveScript;
	src: url(../Fave-ScriptBoldPro.ttf);
}

a {
	text-decoration: none;
	color: var(--ter06);
}

:root {
	--prim01: #FFFFFF;
	--ter01: #E1F0FF;
	--sec01: #C9E4FF;
	--ter02: #ABD5FF;
	--prim02: #99CCFF;
	--prim03: #1C4F82;
	--sec03: #0E2841;
	--ter06: #091929;
}



/*--- BODY ---*/
body {
	margin: 0;
	font-family: 'Dosis', sans-serif;
	font-size: 32px;
	color: var(--ter06);
	background-color: var(--ter01);
	height: 100%;
}



/*--- HEADER STYLES ---*/
.header {
	background: linear-gradient(to top, var(--sec01), var(--ter01));
}


/* Header - Title */
.header-title{
	font-family: faveScript, 'Dosis', sans-serif;
	font-size: min(10vw, 100px);
    width: 80%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 1vw;
}

.header-title a{
	color: var(--sec03);
}


/* Header - Menu */
nav{
	flex-wrap: wrap;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.header ul{
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	padding-bottom: 1vw;
}

.header li{
	
	display: inline-block;
    list-style: none;
	font-size: max(min(2.5vw, 50px), 30px);
	width: 5em;
	height: 1.5em;
	color: var(--ter06);
	
}

.header li p{
	position: absolute;
	margin: 0;
	width: inherit;
    height: inherit;
	transition: font-size 0.3s, text-shadow 0.3s;
}

.header li p:hover{
	font-size: max(min(2.6vw, 52px), 32px);
	text-shadow: 0px 0px 4px var(--prim02);
}



/*--- CONTENT STYLES ---*/
.core{
	background-color: var(--sec01);
}

.content{
	width: 80%;
	margin: 0 auto;
	text-align: left;
	background-color: var(--ter01);
	padding: 20px 40px 5% 5%;
	border-radius: 10px;
}

h1 {
	font-size: 2.5em;
	font-family: faveScript, 'Dosis', sans-serif;
	font-weight: normal;
	margin: 0.3em 0;
}

.content a{
	color: var(--prim03);
	transition: font-size 0.3s, text-shadow 0.3s;
}

.content a:hover{
	text-shadow: 0px 0px 4px var(--ter02);
}


/* Image Sequence */
div .imgport{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

div .imgport img{
	width: min(15em, 80%);
	border: 5px solid var(--sec01);
    margin-bottom: 2em;
}

div .imgport .double{
	width: min(25em, 80%);
}

div .imgport video{
	width: min(15em, 80%);
	height: 20em;
	border: 5px solid var(--sec01);
    margin-bottom: 2em;
}


/* Category Boxes */
div .boxholder{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

div .box{
	width: 7em;
    height: 7em;
	padding: 0.3em;
	margin-bottom: 1em;	
}

div .categorybox{
	position: absolute;
	display: flex;
	justify-content: space-around;
    align-items: center;
	z-index: 3;

	height: 7em;
	width: 7em;
	
	border-radius: 0.5em;
    background-color: var(--prim02);
}

div .categorybox p{
	position: absolute;
	font-size: 1.5em;
	text-align: center;
	color: var(--ter01);
	margin: 0;	
	transition: font-size 0.5s;
}

div .categorybox p a{
	color: var(--ter01);
}

div .cbshadow{
	position: absolute;
	z-index: 2;

	height: 7em;
	width: 7em;
	
	border-radius: 0.5em;
    background-color: var(--ter02);

	transition: transform 0.3s;
}

div .cbhighlight{
	position: absolute;
	z-index: 1;

	height: 7em;
	width: 7em;
	
	border-radius: 0.5em;
    background-color: var(--sec01);

	transition: transform 0.5s;
}

div .box:hover .cbshadow{
	transform: scale(1.15) rotate(70deg);
}

div .box:hover .cbhighlight{
	transform: scale(1.2) rotate(100deg);
}

div .box:hover .categorybox p{
	font-size: 1.7em;
}



/*--- FOOTER STYLES ---*/
.footer{
	font-size: 2vh;
	color: var(--prim03);
	background: linear-gradient(to top, var(--ter01), var(--sec01));
	padding-left: 10%;
	padding-top: 5%;
	padding-bottom: 90px;
}

.footer a{
	color: var(--prim03);
	font-weight: bold;
	text-decoration: none;
}



/*--- DEFUNCT - HEADER DROPDOWN STYLES ---*/
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-options {
    display: none;
    position: absolute;
	width: 5em;
    background-color: var(--ter01);
}

.dropdown-options a {
    color: var(--ter06);
    padding: 4px 4px;
    text-decoration: none;
    display: block;
}

.dropdown:hover .dropdown-options {
    display: block;
	z-index: 90;
}