
@font-face {
    font-family:"Favorit-Light";
    src:url("../fonts/Favorit_Light.woff2") format("woff2"),url("../fonts/Favorit_Light.woff") format("woff"),url("../fonts/Favorit_Light.otf") format("opentype");
    font-style:normal;font-weight:normal;
}
        

*,
*:after, 
*:before {
	margin: 0;
	box-sizing: border-box;
	font-family: 'Favorit-Light', arial, sans-serif;
}

*::selection {
	background: #000;
	color: #f7d8e3;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
}

body {
	background-color: #f7d8e3;
}

.alpha {
	font-size: 8vw;
	line-height: 1.4;
}

.beta {
	font-size: 8.4vw;
	line-height: .93;
	letter-spacing: -.2rem;
}

.gamma {
	font-size: 3.4vw;
}

.zeta {
	font-size: 1.5vw;
	letter-spacing: 0;
	text-align: left;
}

a {
	text-decoration: none;
	color: inherit;
}

a:hover {
	color: #fff;
}

.logo {
	width: 50%;
}

.logo img {
	width: 100%;
}

header {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	display: flex;
	width: 100%;
}

.intro {
	padding-top: 5%;
	text-align: center;
}

.intro-text {
	width: 100%;
}

.intro-img {
	width: 50%;
	padding: 9% 9% 0 9%;
	margin: 0 auto;
}

.intro-img img {
	width: 100%;
}

.mirror {
	height: 100vh;
	opacity: 1;
	display: flex;
	align-items: center;
}

footer {
	color: #f7d8e3;
	display: flex;
	justify-content: space-between;
	padding: 2%;
}

.wrapper {
	transition: background .2s ease;
}

.marquee {
	width: 100%;
	height: 18%;
	overflow: hidden;
	position: relative;
}

.marquee div {
	display: block;
	width: 400%;
	height: 100%;
	position: absolute;
	overflow: hidden;
	animation: marquee 10s linear infinite;
}

.marquee span {
	color: #f7d8e3;
	width: 50%;
}

.m-1 {
	padding-right: 4.1%;
}

@keyframes marquee {
	0% { left: 0; }
	100% { left: -200%; }
}

.show-mobile {
	display: none;
}



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

	header {
		position: absolute;
	}
	.show-mobile {
		display: block;
	}

	.logo {
		position: fixed;
		width: 100%;
		padding: 4%;
	}

	.spacer {
		display: none;
	}

	.m1 {
		top: 0;
	}

	.m2 {
		top: unset;
		bottom: 0;
	}

	.intro {
		padding-top: 35%;
	}

	.intro-img {
		width: 80%;
	}

	.alpha {
		font-size: 20vw;
	}

	.beta {
		font-size: 10.6vw;
		line-height: 1;
		letter-spacing: 0;
	}

	.gamma {
		font-size: 11.5vw;
	}

	.marquee div {
		width: 1000%;
	}

	.marquee span {
		width: 50%;
	}

	@keyframes marquee {
		0% { left: 0; }
		100% { left: -500%; }
	}

	footer {
		position: relative;
	}

}