/* FLEXBOX SETUP
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.Site {
  display: 		flex;
  min-height: 		100vh;
  flex-direction: 	column;
}

.Site-content {
  flex: 		1;
}


/* GENERAL SITE STUFF
–––––––––––––––––––––––––––––––––––––––––––––––––– */

body {
	background-color: 	#000;
	background-size: 	cover;
	background-position: 	center;
	color: 			#fff;
	text-align: 		center;
}

/* centering the main logo */
#centerme {
	position: 	absolute;
	left: 		50%;
	top: 		50%;
    
/* You must set a size manually */
	width: 		250px;
	height: 	250px;
    
/* Set negative margins equal to half the size */
	margin-left: 	-125px;
	margin-top: 	-125px;
}

/* header layout */
.header {
	width: 		100%;
	text-align: 	center;
	padding-top: 	70px;
}

/* footer layout */
.footer {
    text-align: 	center;
    padding-bottom: 	35px;
}

/* social logos */
.sociallogo {
	padding-left: 	10px;
	padding-right: 	10px;
}


/* IMAGE SIZES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

img.mainlogo {
	height: 	250px; 
	width: 		250px;
}

img.sociallogo {
	height: 	60px; 
	width: 		60px;
}



/* CLASSES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.fontone {
	font-family: 	'Work Sans', sans-serif;
	font-weight: 	900;
	font-size: 	12pt;
	line-height: 	18pt
}

.fonttwo {
	font-family: 	'Work Sans', sans-serif;
	font-weight: 	900;
	font-size: 	18pt;
	line-height: 	22pt
}

.fontthree {
    font-family: 	'Work Sans', sans-serif;
    font-weight: 	900;
    font-size: 		38pt;
    line-height: 	22pt
}

.tinytext {
    font-size: 		6pt;
}

/* LINK BEHAVIOUR
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* unvisited link */
a:link {
    color: 		#fff;
    text-decoration: 	none;
}

a.flink:link {
    color: 		#fff;
    border-bottom: 	1px solid rgba(255, 255, 255, 0);
    transition: 	0.25s;
}

a.tinylink:link {
    text-decoration: 	none;
    opacity: 		0.3;
    transition: 	0.25s;
}

/* visited link */
a:visited {
    color: 		#fff;
    text-decoration: 	none;
}

/* mouse over link */
a:hover {
    color: 		#fff;
    text-decoration: 	none;
}

a.flink:hover {
    color: 		#fff;
    border-bottom: 	1px solid rgba(255, 255, 255, 1);
}

a.tinylink:hover {
    text-decoration: 	none;
    opacity: 		1;
}

/* selected link */
a:active {
    color: 		#fff;
    text-decoration: 	none;
}

/* scaling */
@media screen and (max-height:1200px){

    #centerme {
 
        /* You must set a size manually */
        width: 		200px;
        height: 	200px;
    
        /* Set negative margins equal to half the size */
        margin-left: 	-100px;
        margin-top: 	-100px;
    }

    img.mainlogo {
        height: 	200px; 
        width: 		200px;
    }

    img.sociallogo {
        height: 	60px; 
        width: 		60px;
    }

}

@media screen and (max-height:800px){

    #centerme {
        /* You must set a size manually */
        width: 		150px;
        height: 	150px;
    
        /* Set negative margins equal to half the size */
        margin-left: 	-75px;
        margin-top: 	-75px;
    }

    img.mainlogo {
        height: 	150px; 
        width: 		150px;
    }

    img.sociallogo {
        height: 	40px; 
        width: 		40px;
    }

    .fontthree {
        font-size: 	32pt;
    }

}

@media screen and (max-height:600px){

    #centerme { 
        /* You must set a size manually */
        width: 		100px;
        height: 	100px;
    
        /* Set negative margins equal to half the size */
        margin-left: 	-50px;
        margin-top: 	-50px;
    }

    .header {
        padding-top: 	30px;
    }

    img.mainlogo {
        height: 	100px; 
        width: 		100px;
    }

    img.sociallogo {
        height: 	30px; 
        width: 		30px;
    }

    .fontthree {
        font-size: 	24pt;
    }

    p {
        margin: 	7px;
    }

}

