* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
h1 span {
	color: yellow;
  }
:root {
	--index: calc(1vw + 1vh);
	--transition: 1.5s cubic-bezier(.05, .5, 0, 1);
}
@font-face {
	font-family: kamerik-3d;
	src: url(../fonts/kamerik205-heavy.woff2);
	font-weight: 900;
}
@font-face {
	font-family: merriweather-italic-3d;
	src: url(../fonts/merriweather-regular-italic.woff2);
}
body {
	background-color: #000;
	color: #fff;
	font-family: kamerik-3d;
}
body {
	user-select: none;
	-webkit-user-select: none; /* for older versions of Safari */
  }
  
  /* Add the following style to the elements where you want to allow text selection */
  .button-start,
  .social-button {
	user-select: text;
	-webkit-user-select: text; /* for older versions of Safari */
  }
  
.logo {
	--logo-size: calc(var(--index) * 7.8);
	width: var(--logo-size);
	height: var(--logo-size);
	background-repeat: no-repeat;
	position: absolute;
	left: calc(51% - calc(var(--logo-size) / 2));
	top: calc(var(--index) * 2.8);
	z-index: 1;
}
.layers {
	perspective: 1000px;
	overflow: hidden;
}
.layers__container {
	height: 100vh;
	min-height: 500px;
	transform-style: preserve-3d;
	transform: rotateX(var(--move-y)) rotateY(var(--move-x));
	will-change: transform;
	transition: transform var(--transition);
}
.layers__item {
	position: absolute;
	inset: -5vw;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.layer-1 {
	transform: translateZ(-55px) scale(1.06);
}
.layer-2 {
	transform: translateZ(80px) scale(.88);
}
.layer-3 {
	transform: translateZ(180px) scale(.8);
}
.layer-4 {
	transform: translateZ(190px) scale(.9);
}
.layer-5 {
	transform: translateZ(300px) scale(.9);
}
.layer-6 {
	transform: translateZ(380px);
}
.hero-content {
	font-size: calc(var(--index) * 2.9);
	text-align: center;
	text-transform: uppercase;
	letter-spacing: calc(var(--index) * -.15);
	line-height: 1.35em;
	margin-top: calc(var(--index) * 5.5);
}
.hero-content span {
	display: inline;
}
.hero-content__p {
	text-transform: none;
	font-family: merriweather-italic-3d;
	letter-spacing: normal;
	font-size: calc(var(--index) * .73);
	line-height: 3;
}
.button-start {
	font-family: Arial;
	font-weight: 600;
	text-transform: uppercase;
	font-size: calc(var(--index) * .71);
	letter-spacing: -.02vw;
	padding: calc(var(--index) * .7) calc(var(--index) * 1.25);
	background-color: transparent;
	color: #fff;
	border-radius: 10em;
	border: rgb(255 255 255 / .4) 3px solid;
	outline: none;
	cursor: pointer;
	margin-top: calc(var(--index) * 2.5);
}
.button-start2 {
    font-family: Arial;
    font-weight: 600;
    text-transform: uppercase;
    font-size: calc(var(--index) * .71);
    letter-spacing: -.02vw;
    width: 100px; /* Adjust the width as needed */
    height: 100px; /* Adjust the height as needed */
    padding: calc(var(--index) * .7) calc(var(--index) * 1.25);
    background-color: transparent;
    color: #fff;
    border-radius: 50%; /* Set border-radius to 50% for a round button */
    border: rgb(255 255 255 / .4) 3px solid;
    outline: none;
    cursor: pointer;
    margin-top: calc(var(--index) * 2.5);
}

.layer-4, .layer-5, .layer-6 {
	pointer-events: none;
}
/* Add this CSS to your existing stylesheet */

.button-container {
	display: flex;
	justify-content: center;
	margin-top: 20px;
  }
  
  .social-button {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	margin: 0 10px;
	overflow: hidden;
  }
  
  .social-button img {
	width: 100%;
	height: auto;
	border-radius: 50%;
  }
  
  /* Additional styling for better responsiveness */
  @media (max-width: 768px) {
	.button-container {
	  flex-direction: column;
	}
  
	.social-button {
	  margin: 10px 0;
	}
  }
  
  .social-button-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
  }
  
  .social-button {
	font-family: Arial;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 24px;
	letter-spacing: -.02vw;
	width: 70px;
	height: 70px;
	padding: 20px;
	background-color: transparent;
	color: #fff;
	border-radius: 50%;
	border: rgb(255 255 255 / .4) 3px solid;
	outline: none;
	cursor: pointer;
	margin: 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none; /* Add this line to remove underlines */
  }
  
  .social-button i {
	color: #fff;
  }




