/* Reset */
html {
  box-sizing: border-box;
  font-size: 16px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Styles */
body {
	margin: 0;
	
}
p {
	font-size: 18px;
	line-height: 20px;
	font-family: "Union",sans-serif;
  font-style:   normal;
  font-weight:  400;
  font-stretch: normal;
  -webkit-font-smoothing: antialiased;
}
a {
	color: inherit;
	text-decoration: none;
}

#site {
	display: flex;
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	flex-direction: column;
	padding: 25px 20px;
	gap: 40px;
}

.bg {
	position: fixed;
	top: 50%;
	left: 50%;
	height: 80vh;
	width: 80vh;
	transform: translate(-50%,-50%);
	z-index: 0;
	pointer-events: none;
	line-height: 0px;
	font-size: 0px;
	letter-spacing: 0px;
}
.bg img, .bg video {
	position: absolute;
	top: 0;
	left: 0;
	object-fit: contain;
	width: 100%;
	height: 100%;
	background: #d5ff00;
	border-top: 25px solid #d5ff00;
	border-bottom: 25px solid #d5ff00;
}

.icon {
	line-height: 0px;
}

.icon img {
	width: 54px;
	height: auto;
}

.top {
	text-align: left;
	z-index: 2;
}

.bottom {
	text-align: right;
	z-index: 2;
	line-height: 0px;
	opacity: 0;
}

.bottom.clone {
	position: fixed;
	bottom: 25px;
	right: 20px;
	opacity: 1;
}

.cols {
	display: grid;
	grid-template-columns: repeat(6,1fr);
	gap: 20px;
	z-index: 2;
}

.cols a:hover {
	border-bottom: 1px dotted;
}

.logo {
	z-index: 2;
	text-align: center;
	flex: 1;
	display: flex;
	justify-content: center;
	place-items: center;
	margin-top: 12vh;
}
.logo img {
	max-width: 1120px;
	width: 100%;
	height: auto;
}

.col.large {
	grid-column: span 3;
}

.col p {
	max-width: 485px;
}

@media screen and (max-width: 800px) {
	#site {
		padding: 20px;
		gap: 20px;
	}
	p {
		font-size: 16px;
	line-height: 18px;
	}
	.cols {
		grid-template-columns: repeat(1,1fr);
	}
	.col, .col.large {
		grid-column: span 1;
	}
	.bg {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		bottom: auto;
		transform: translate(0%,0%);
		width: auto;
		height: auto;
	}
	.bg img {
		position: relative;
		width: 100%;
		height: auto;

	}
	.logo {
		margin-top: 0px;
	}
	.icon img {
		width: 27px;
		height: auto;
	}
	.top {
		position: sticky;
		top: 20px;
	}
	.bottom {
		position: fixed;
		bottom: 20px;
		right: 20px;
		opacity: 1;
	}
	.clone {
		display: none;
	}
}