html, body{
	background-color: #000;
	color: #FFF;
	font-family: Helvetica, Arial;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

/* interactions */
#interactions{
	display: flex;
	justify-content: center;
	align-items: end;
}
#down{
	text-align: center;
	font-family: 'DrukWideBold';
	margin-top: 24px;
	font-size: 20px;
	margin-left: 24px;
}
#down a{
	color: #FFF;
	text-decoration: none;
}
#down a:hover{
	text-decoration: underline;
}
#down img{
	width: 20px;
	margin-right: 6px;
}

/* ABOUT */
#about{
	font-family: 'FormaDJRTextRegular';
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 960px;
	margin: auto;
	margin-top: 48px;
}
.copyContainer{
	margin-bottom: 12px;
	text-align: justify;
}
.copy{
	font-size: 24px;
	margin: auto;
	border-radius: 12px 12px 0 0;
	color: rgba(255,255,255,1);
	margin-bottom: 36px;
	margin-top: 36px;
}
.images{
	text-align: center;
	white-space: nowrap;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.images img{
	width: calc(50% - 6px);
	display: inline-block;
	border-radius: 12px;
}
.image{
	text-align: center;
}
.image img{
	border-radius: 12px;
	max-height: 640px;
	width: auto;
	max-width: 100%;
	display: inline-block;
}

/* SERVICES */
#services{
	font-size: 24px;
	width: 100%;
	max-width: 640px;
	margin: auto;
	margin-top: 48px;
	margin-bottom: 24px;
}
.serviceHeader{
	font-family: 'DrukWideBold';
	margin-bottom: 24px;
	font-size: 36px;
	text-align: center;
}
.service{
	margin-bottom: 24px;
	line-height: 32px;
}
.serviceTitle{
	font-family: 'DrukWideBold';
	display: inline;
	background-color: #FFF;
	border-radius: 4px;
	color: #000;
	padding: 0 8px 0 8px;
	margin-right: 2px;
	font-size: 20px;
}
.serviceDesc{
	display: inline;
}

/* CONTACT */
@keyframes huehuehue{
	0%{
		transform: rotateY(0deg);
	}
	100%{
		transform: rotateY(360deg);
	}
}
#contact{
	font-size: 24px;
	margin-top: 24px;
	margin-bottom: 48px;
	text-align: center;
	line-height: 44px;
}
#contact a{
	color: #000;
	text-decoration: none;
	font-size: 36px;
	background-color: #FFF;
	border-radius: 12px;
	padding: 6px 12px 6px 12px;
}
#contact a:hover{
	text-decoration: underline;
}

#contact img{
	height: 28px;
	margin-bottom: -6px;
	margin-left: 2px;
	animation: 4s linear infinite huehuehue;
}