@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	scroll-behavior: smooth;
}
body 
{
	background: linear-gradient(#2b1055,#7597de);
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	overflow: scroll;
	overflow-x: hidden;	
	
}

.container 
{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.container .card 
{
	position: absolute;
	width: 240px;
	height: 320px;
	border-radius: 8px;
	background: #5e5cfc;
	display: flex;
	justify-content: center;
	align-items: center;
	color: rgba(0,0,0,0);
	font-size: 8em;
	font-weight: 700;
	border: 10px solid rgba(0,0,0,0.1);
	cursor: pointer;
	transition: 0.5s;
	transform-origin: 50% 100%;
	box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}
.container:hover .card 
{
	transform: rotate(calc(var(--i) * 5deg)) translate(calc(var(--i) * 120px), -50px);
	color: rgba(0,0,0,0.25);
	box-shadow: 0 15px 50px rgba(0,0,0,0.25);
}
.container:active .card 
{
	background: #333;	
}
.container .card:active 
{
	translate: calc(var(--i) * 20px) -50px;
	z-index: 100;
	background: #5e5cfc;
}
header
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 30px 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
  }
header .logo
{
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 2px;
}
header ul
{
  display: flex;
  justify-content: center;
  align-items: center;
}
header ul li
{
  list-style: none;
  margin-left: 20px;
}
header ul li a
{
  text-decoration: none;
  padding: 6px 15px;
  color: #fff;
  border-radius: 20px;
}
header ul li a.active,
header ul li a:hover
{
  background: #fff;
  color: #2b1055;
}
section
{
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 100px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.stars
{
 position: absolute;

}
.montain
{
 position: absolute;
 
}
.sec
{
  background-color: #100424;
  position: absolute;
  width: 1910px;
  height: 300px;
  top : 1048px;
}
section img#mountains_front
{
  position: absolute;
  top: -500px;
  
  
}

