	*{
		padding: 0;
		margin: 0;
		box-sizing: border-box;
	}

	html, body{
		width: 100vw;
		height: 100vh;
		font-family: "JetBrains Mono", monospace;
	}

	.pre-loader{
		position: fixed;
		top: 0;
		width: 100%;
		height: 100%;
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
		z-index: 9;
	}

	.loader{
		position: absolute;
		top: 0;
		width: 100%;
		height: 100%;
		background: #000;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.loader-content{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		display: flex;
		width: 400px;
		z-index: 10;
		color: #fff;
	}

	.count{
		flex: 2;
		text-align: right;
		line-height: 1;
		padding: 0 1em;
	}

	.copy{
		flex: 6;
		font-size: 30px;
		text-transform: uppercase;
		line-height: 1;
	}

	.ml16{
		overflow: hidden;
	}

	.ml16 .letter{
		display: inline-block;
		line-height: 1em;
	}

	.loader-bg{
		position: absolute;
		display: block;
		top: 0;
		width: 100%;
		height: 100%;
		background: red;
		z-index: -1;
	}

	.loader-2{
		position: absolute;
		top: 0;
		width: 100%;
		height: 100%;
		background: url(img/hero.jpg) no-repeat 50% 50%;
		background-size: cover;
		z-index: -1;
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}

	.site-content{
		position: relative;
		z-index: 0;
	}

	nav{
		width: 100%;
		padding: 2em;
		display: flex;
	}

	a{
		text-decoration: none;
		color: #fff;
	}

	nav > div{flex: 1}

	.links{
		display: flex;
		justify-content: flex-end;
		gap: 5em;
	}

	.header{
		display: flex;
		padding: 1em;
		color: #fff;
	}

	.header h1{
		flex: 1;
		position: relative;
		font-size: 20vw;
		font-weight: 500;
		text-transform: uppercase;
		line-height: 1;
		text-align: center;
		justify-content: center;
		align-items: center;
		z-index: -1;
	}

	footer{
		position: fixed;
		bottom: 0;
		width: 100%;
		display: flex;
		align-items: flex-end;
		padding: 2em;
		z-index: 0;
	}

	footer > div{
		flex: 1;
	}

	.footer-copy p{
		position: relative;
		color: #fff;
		width: 50%;

	}

	.footer-nav{
		display: flex;
		gap: 2em;
		justify-content: flex-end;
	}

	.img{
		width: 225px;
		height: 150px;
		clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
	}

	.img:nth-child(1){
		background: url(img/download.jpg) no-repeat 50% 50%;
		background-size: cover;
	}

	.img:nth-child(2){
		background: url(img/images.jpg) no-repeat 50% 50%;
		background-size: cover;
	}

	@media(max-width:900px) {
		
		footer{flex-direction: column;gap: 2em;}

		.footer-copy p{width: 100%;}

		.footer-nav{width: 100%;justify-content: space-between;}
		
		.loader-content{width:100%;}
		
	}

	@media(max-width:425px) {

		nav{padding: 1em;}

		.links {flex-direction: column;align-items: flex-end;gap: 0rem;}

		.loader-2 {background: url(img/hero.jpg) no-repeat 47% 50%;}

	}
