@font-face {
	font-family: BOUNCY;
	src: url(../font/BOUNCY.ttf);
}

@font-face {
	font-family: AdHocSmallCaps;
	src: url(../font/AdHocSmallCaps.TTF);
}

@font-face {
	font-family: DMSans-Regular;
	src: url(../font/DMSans/DMSans-Regular-BF64376d323f095.ttf);
}

@font-face {
	font-family: MochiyPopOne-Regular;
	src: url(../font/MochiyPopOne-Regular.ttf);
}

@font-face {
	font-family: peasammyjo;
	src: url(../font/peasammyjo.ttf);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
	color: #fff;
	outline: 0;
}

.text-head {
	font-family: 'AdHocSmallCaps', sans-serif;
}

p {
	font-family: 'DMSans-Regular', sans-serif;
	letter-spacing: 1px;
	font-size: 26px;
}

a {
	text-decoration: none;
	cursor: pointer;
}

img {
	width: 100%;
}

body {
	width: 100vw;
	overflow-x: hidden;
	background-color: rgb(189 32 39);
	background-image: url(../img/exper/element-uni-BGWHITE.jpg);
	font-family: 'BOUNCY', sans-serif;
	color: #fff;
	font-size: 22px;
}

@import "compass/css3";
@import "compass/css3";
@import "compass/reset";

* {
	@include box-sizing(border-box);
}

.container {
	display: flex;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	width: 80vw;
	max-width: 1600px;
}

section {
	overflow: hidden;
}

h1,
h2,
h3,
h4 {
	font-family: 'AdHocSmallCaps', sans-serif;
}

h2 {
	font-size: 3em;
	font-weight: 100;
}

h4 {
	font-size: 4rem;
	text-transform: uppercase;
	letter-spacing: 4px;
}

h6 {
	font-size: 22px;
	font-family: 'DMSans-Regular', sans-serif;
}

small {
	font-size: 16px;
}

nav {
	z-index: 999;
	position: fixed;
	top: 0;
	width: 100%;
	height: 3em;
	padding: 0.75em;
	background-color: rgb(189 32 39);
	font-size: 2rem;
}

nav ul {
	display: flex;
	justify-content: space-evenly;
}

nav a {
	line-height: 0;
}

nav li {
	height: 1.5em;
	display: flex;
	justify-content: center;
	align-items: center;
}

li.logo {
	width: 5.5em;
}

li.logo a {
	position: absolute;
	line-height: 0;
	top: 0;
}

li.logo img {
	width: 5.5em;
	border-radius: 50%;
	background-color: rgb(66 223 216);
	filter: invert(1);
}

li .icon_play {
	width: 50px;
	transform: scale(1.5);
}









@media screen and (min-width: 1700px) {
	h4 {
		font-size: 8rem;
	}
}

@media screen and (max-width: 1248px) {
	h4 {
		font-size: 4vw;
	}

}









/* section game */
section.game {
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}

/* text rolling */
@keyframes marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-100%);
	}
}

.marquee {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	background: linear-gradient(to right, rgb(243 143 55), rgb(220 0 3));
}

.marquee span {
	text-transform: uppercase;
	will-change: transform;
	transform: translateX(0);
	white-space: nowrap;
	animation: marquee 15s linear infinite;

	/* Extra Styling */
	font-size: 3rem;
	color: #fff;
}

.marquee span img {
	width: auto;
	height: 3rem;
	margin: 0 2rem;
	top: 5px;
	position: relative;
}

@media screen and (max-width: 1500px) {

	.marquee span {
		/* Extra Styling */
		font-size: 2rem;
	}

	.marquee span img {
		height: 2rem;
		top: 2.5px;
	}

}


@media screen and (max-width: 430px) {
	.marquee span {
		/* Extra Styling */
		font-size: 2rem;
	}

	.marquee span img {
		height: 2rem;
	}
}



/* footer */
footer {
	background-color: #bd2026;
	padding-top: 6em;
	padding-bottom: 3em;
	text-transform: uppercase;
}

.container.--footer {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

footer .social {
	display: flex;
}



footer .social a {
	width: 50px;
	height: 50px;
	border-radius: 50em;
	display: block;
	background-image: url(../img/06-GAME/icon-unifb1.png);
	background-position: center;
	background-size: 100%;
	margin: 0 .25rem;
	transition: all 300ms ease;
}

footer .social a:hover {
	background-image: url(../img/06-GAME/iconhoverclick/icon-unifbclick1.png);
}

footer .social a:nth-child(2) {
	background-image: url(../img/06-GAME/icon-uniig2.png);
}

footer .social a:hover:nth-child(2) {
	background-image: url(../img/06-GAME/iconhoverclick/icon-uniig-2click.png);
}

footer .social a:nth-child(3) {
	background-image: url(../img/06-GAME/icon-unitt3.png);
}

footer .social a:hover:nth-child(3) {
	background-image: url(../img/06-GAME/iconhoverclick/icon-unitt3click.png);
}


.contact-popup {
	position: fixed;
	width: 10%;
	top: 80%;
	right: 0;
	transform: translateY(-50%);
	z-index: 300;
}

.contact-popup:hover img {
	transform: scale(1.2);
}

.contact-popup img {
	transition: all 300ms ease;
}

@media screen and (min-width: 1700px) {
	.pd-name {
		font-size: 8rem;
	}
}

@media screen and (max-width: 840px) {
	.contact-popup {
		width: 20%;
		z-index: 600;
	}

	small {
		font-size: 14px;
	}
}