:root {
	--primary-color: #6E73F1;
	--secondary-color: #FBEADA;
	--accent-color: #477024;
}
@font-face {
	font-family: "BAYARD";
	src: url("../fonts/BAYARD-Regular.woff");
	font-weight: 700;
}
html {
	overflow: hidden;
}
body {
	margin: 0;
	padding: 0;
	height: 100vh;
	overflow: hidden;
	scale: 1;
	color: #fff;
	font-family: "BAYARD";
	/* text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.30); */
	font-size: .7rem;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0.4px;
}
.main {
	display: flex;
	flex-direction: column;
	position: relative;
	height: 100vh;
	overflow: hidden;
	text-align: center;
	justify-content: center;
	padding: 0 5%;
	z-index: 10;
	align-items: center;
	justify-items: center;	
}
.logo {
	position: relative;
	top: 40px;
	width: 60vw;
}
.middle-section{
	margin: auto;
}
.middle-section .copy{
	align-self: start;
}
.bottom-section {
	grid-row: 3;
	margin-top: auto;
	margin-bottom: 14vh;
}
.centered {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #000;
}
p {
	margin: 1vh 0 3vh;
}
.back {
	background-color: #A3C71C;
	height: 100vh;
	width: 100vw;
	position: absolute;
	object-fit: cover;
	transform: scale(1.1);
	z-index: -2;
}
.share, .close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 100;
}
img {
	vertical-align: initial !important;
}
.prop {
	position: absolute;
	z-index: 10;
}
.line {
	height: 10px;
}
.line_top {
	top: 5px;
}
.line_bottom, .man {
	bottom: 5px;
}
.man {
	height: 90vh;
	left: 0;
	z-index: -1;
}
.bush {
	height: 40vh;
	right: 0;
	bottom: 2vw;
}
.can {
	height: 95vh;
	left: auto;
	bottom: -5px;
	right: 10px;
}
.button {
	font-family: "BAYARD";
	background: var(--primary-color);
	width: 10rem;
	padding: 4px;
	border-radius: 30px;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	color: var(--secondary-color);
	font-size: 30px;
	font-style: normal;
	line-height: normal;
	letter-spacing: 0.9px;
	margin: 10px auto;
	user-select: none;
	z-index: 90;
}
.button:active{
	transform: scale(.8);
}
.button_primary {
	width: 14rem;
	padding: 8px;
}
.button_back, .terms {
	display: none;
}
.button_secondary, .button_back {
	background-color: var(--secondary-color);
	color: var(--primary-color);
	border: 4px solid var(--primary-color);
	padding: 4px;
	letter-spacing: 0.05rem;
}
.overlay {
	background: rgba(163, 199, 28, 0.80);
	backdrop-filter: blur(2px);
	position: absolute;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    z-index: 10;
	transform: translateY(100vh);
}
.copy {
	display: flex;
	flex-direction: column;
    align-items: center;
	font-family: "BAYARD";
	width: 70%;
	margin: 20px auto 0;
	transform: translateY(100vh);
	font-size: 4vh;
	font-style: normal;
}
.copy h3 {
	color: var(--secondary-color);
	margin: 0;
}
.copy p {
	color: var(--accent-color);
	margin: 0;
	font-size: 32px;
}
.terms {
	overflow: scroll;
	height: 70vh;
	color: #1d1d1b;
	text-align: left;
	padding: 0 1rem;
	font-size: 0.75rem;
	margin-top: 1rem;
}
.button_terms {
	text-shadow: 0px 0px 10px #00000050;
	color: inherit;
}
.img-container {
	position: relative;
	transform: translateX(-50%);
	left: 50%;
	align-items: center !important;
}
.cts span {
	text-decoration: underline;
}

/* TRANSITIONS */
.logo {
	transition: transform 0.5s ease;
}
.button, .cts, .copy, .overlay {
	transition: transform 1s ease;
}
/* END OF TRANSITIONS */

/* Small Mobile version */
@media (min-width: 375px) { 
	#alternate #mobile-version .copy {
		display: block !important;
		transform: translateY(50%);
		transition: none;
		color: var(--primary-color);
	}
	#alternate #mobile-version .middle-section {
		display: flex;
		flex-direction: column;
		gap: 5vh;
		top: 0;
		align-items: center;
	}
	#alternate.soon #mobile-version .middle-section {
		margin: 20vh auto;
		right: 5vh;
	}
	#alternate.ended #mobile-version .middle-section{
		margin: 15vh auto;
    	right: 1vh;
	}
	#alternate #mobile-version .scan {
			font-size: 15vw;
			font-family: 'BAYARD';
			line-height: 5vh;
	}
}

/* iPhone SE version */
@media (max-height: 670px) {
	.bottle2 {
		display: none !important;
	}
	.bottom-section {
		margin-bottom: 14vh;
	}
}

/* iPhone maxpro version */
@media (max-width: 430px) {
	.main {
		grid-template-rows: 1fr 2fr 2fr;
	}
}

/* Desktop version */
@media only screen and (min-width: 725px) {
	#desktop-version {
		display: block;
		width: 100vw;
		height: 100vh;
	}
	#desktop-version .middle-section {
		position: relative;
		display: grid;
		justify-items: center;
		height: 100%;
		align-content: center;
		grid-gap: 1rem;
		z-index: 9;
		width: 45vh;
	}
	#desktop-version .back {
		object-position: right;
	}
	#desktop-version .line {
		height: initial;
		width: 100vw !important;
	}
	#desktop-version .logo {
		top: auto;
		width: 100%;
		grid-row: 1;
	}
	#desktop-version .qr {
		width: 50%;
		grid-row: 2;
	}
	#desktop-version .scan {
		font-size: 7vh;
		color: var(--primary-color);
		text-align: center;
		color: var(--primary-color);
		width: 120%;
		grid-row: 3
	}
}