@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');

:root {
	--main: 241, 241, 241; /* light grey */
	--secondary: 255, 255, 255; /* white */
	--tertiary: 150, 200, 255; /* light blue */
	--white: 255, 255, 255;
	--gray: 235, 235, 235;
	--darkergray: 210, 210, 210;
	--black: 0, 0, 0;
}

* {
	box-sizing: border-box;
}

html, body {
    background-color: #f1f1f1;
    color: #222;
    font-size: 1em;
    line-height: 1.4;
    width: 100%;
    height: 100%;
	margin: 0;
    font-family: "Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;
}

.container {
	width: 100%;
	height: 100%;
}

.header {
    position: relative;
	width: 100%;
    height: 100vh;
    background: url(../img/bg/bg.jpg) no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}


.footer {
    display: flex;
    flex-flow: column wrap;
    align-content: center;
    text-align: center;
    width: 100%;
    background-color: rgb(var(--darkergray));
}

.footer .inline-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.footer .inline-list .profile-link .logo {
    height: 32px;
    width: 32px;
}

/**********************/
/* begin media queries */
/********************/

@media only screen and (max-width: 414px) {
	.footer .inline-list .profile-link:nth-child(n+4)	{
		display: none;
	}
}

/**********************/
/* end media queries */
/********************/
