@charset "utf-8";
/* Title: Pixelkeet Graphic Design and Web Development Website Base Styles
** Description: Base styles for all pages of Pixelkeet.com
** Author: Jessica Greenwalt - www.jgreenwalt.com
** Created: 12-29-2019
** Updated: 06-16-2023
************************************** */


/* = Reset */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
a, article, aside, figure, footer, header, menu, nav, section, menu,
time, mark, audio, video {
	padding:0;
	margin:0;
	border:0;
	outline:0;
	font-size:100%;
	font-weight: normal;
	vertical-align:baseline;
	text-align: center;
	}


/* = Styles Start */

body {
	height: 100vh;
	margin: 0;
	padding: 0;
	background: linear-gradient(270deg, #77d8d2, #a54a90, #3d1f46, #1d2639, #7396e5);
	background-size: 1000% 1000%;
	-webkit-animation: animation 32s ease infinite;
	-moz-animation: animation 32s ease infinite;
	animation: animation 32s ease infinite;
	font-family:'Aldrich', Arial, Helvetica, sans-serif;
}

@keyframes animation {
	0%{background-position:0% 50%}
	50%{background-position:100% 50%}
	100%{background-position:0% 50%}
}
@-webkit-keyframes animation {
	0%{background-position:0% 50%}
	50%{background-position:100% 50%}
	100%{background-position:0% 50%}
}
@-moz-keyframes animation {
	0%{background-position:0% 50%}
	50%{background-position:100% 50%}
	100%{background-position:0% 50%}
}


/* = Content */
.content {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	overflow: scroll;
	background: rgba(0,0,0,0.25);
	text-align: center;
}

h3 {
	margin: 2em 0 3em 0;
	color: #fff;
    font-size: 84%;
    font-weight: normal;
    opacity: 0.8;
}

/* = Logo Block */
.logo-block {
	margin: 0 auto;
	margin-top: 9em;
	margin-bottom: 9em;
	width: 255px;
	height: 300px;
	text-align: center;
}

h1, h2 {
	color: #fff;
	text-transform: uppercase;
	text-align: center;
}

h1 {
	margin: 0.7em 0;
	font-size: 85%;
}

h2 {
	margin: 1em 0;
	font-size: 87%;
}

/* = Logo */
.logo-window {
	box-sizing: border-box;
	margin: 0 auto;
	border: 8px solid #fff;
	width: 250px;
	height: 250px;
}

.logo-window svg {
	margin-top: 100px;
    margin-left: 2px;
	width: 220px;
}

/* = Client Logos */
.client-logos {
	display: grid;
	grid-template-columns: 16.666% 16.666% 16.666% 16.666% 16.666% 16.666%;
	text-align: center;
}

.client-logos span {
	display: table;
	margin: 0;
	width: 100%;
	height: 80px;
	text-align: center;
}
.client-logos span a {
	display: table-cell;
	vertical-align: middle;
	opacity: 0.6;
	text-align: center;
	width: 100%;
	transition:all 0.6s ease;
}
.client-logos span a:hover {
	opacity: 1;
}

.client-logos .behr {
	width: 126px;
}
.client-logos .dark {
	width: 102px;
}
.client-logos .keep-a-breast {
	width: 100px;
}
.client-logos .phishfort {
	width: 144px;
}
.client-logos .linkedin {
	width: 128px;
}
.client-logos .marvel {
	width: 98px;
}
.client-logos .pattern {
	width: 132px;
}
.client-logos .binance {
	width: 150px;
}
.client-logos .tcf {
	width: 176px;
}
.client-logos .telefonica {
	width: 132px;
}
.client-logos .torch {
	width: 100px;
}
.client-logos .un {
	width: 132px;
}


/* = Footer */
.footer {
	margin-top: 7em;
}

.footer a {
	display: inline-block;
	width: 22px;
	margin: 0 2px;
	opacity: 0.6;
	transition:all 0.6s ease;
}
.footer a:hover {
	opacity: 1;
}

.footer .copyright {
	display: block;
	margin: 1em 0;
	font-size: 80%;
	color: #fff;
	opacity: 0.8;
	font-weight: normal;
}



@media (max-width:68em) {
	.client-logos {
		grid-template-columns: 25% 25% 25% 25%;
	}
}

@media (max-width:55em) {
	.client-logos {
		margin: 0 auto;
		width: 90%;
		grid-template-columns: 33.333333% 33.333333% 33.333333%;
	}

	.client-logos .behr {
		width: 120px;
	}
	.client-logos .dark {
		width: 96px;
	}
	.client-logos .keep-a-breast {
		width: 94px;
	}
	.client-logos .phishfort {
		width: 138px;
	}
	.client-logos .linkedin {
		width: 122px;
	}
	.client-logos .marvel {
		width: 92px;
	}
	.client-logos .pattern {
		width: 126px;
	}
	.client-logos .starcity {
		width: 144px;
	}
	.client-logos .tcf {
		width: 170px;
	}
	.client-logos .telefonica {
		width: 126px;
	}
	.client-logos .torch {
		width: 94px;
	}
	.client-logos .un {
		width: 126px;
	}
}

@media (max-width:40em) {
	.client-logos {
		grid-template-columns: 50% 50%;
	}
}

@media (min-height:50em) {
	.logo-block {
		position: relative;
		top: -12%;
		margin-top: 20%;
	}
}
