/* 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: 800px;
	height: 800px;
    
/* Set negative margins equal to half the size */
	margin-left: -400px;
	margin-top: -350px;
}

/* 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: 800px; 
	width: 800px;
}

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: 600px;
        height: 600px;
    
        /* Set negative margins equal to half the size */
        margin-left: -300px;
        margin-top: -250px;
    }

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

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

}

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

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

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

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

    .fontthree {
        font-size: 32pt;
    }

}

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

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

    .header {
        padding-top: 30px;
    }

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

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

    .fontthree {
        font-size: 24pt;
    }

    p {
        margin: 7px;
    }

}

