@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cutive+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap');
* {
	margin: 0px;
	padding: 0px;
}

html, body {
	height: 100%
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
}
h1 {
	font-family: 'Rubik', sans-serif;
    font-size: 90px;
    height: 300px;
    animation: expand 2s ease forwards;
    color: transparent;
    -webkit-text-stroke: 1.5px white;
}

@keyframes expand {
    0% {
        letter-spacing: 0px;
      }
    100% {
        letter-spacing: 10px;
      }
}

.overlay{
    background: #232526;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #414345, #232526);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #414345, #232526); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    opacity:1;
    position:fixed;
    background-color: cadetblue;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;		
    width:100%;
    height:100%;
    top:0px;
    left:0px;
    z-index:1000;
}

.bg {
	opacity:1;
    position:fixed;
    background-image:url("./bg-mountains.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;	
    width:100%;
    height:100%;
    top:0px;
    left:0px;
    animation: huesat 8s infinite;
}

@keyframes huesat {
    0% {
        filter: hue-rotate(0deg);
      }
      
      50% {
        filter: hue-rotate(120deg);
      }
      
      100% {
        filter: hue-rotate(0deg);
      }
}

nav {
	position: absolute;
	bottom: 20px;
	z-index: 3;
	padding: 10px;
	background: whitesmoke;
	color: whitesmoke;
	font-size: large;
	border-radius: 20px;
}

nav button {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	color: purple;
	padding: 2px;
	text-decoration: none;
	font-family: 'Orbitron', sans-serif;
	letter-spacing: 2px;
	font-weight: bold;
	animation: huesat 8s infinite reverse;
	font-size: large;
}

/*Stars Section*/
section {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #000200;
	display: flex;
	justify-content: center;
	align-items: center;
}

section .star {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	pointer-events: none;
	animation: animate 8s ease-in-out infinite,
				backgroundmove 16s linear infinite;
}

section .star.star1 {
	animation-delay: 0s;
	background-image: url("./stars/star1.png");
}

section .star.star2 {
	animation-delay: -1s;
	background-image: url("./stars/star2.png");
}

section .star.star3 {
	animation-delay: -2s;
	background-image: url("./stars/star3.png");
}

section .star.star4 {
	animation-delay: -3s;
	background-image: url("./stars/star4.png");
}

section .star.star5 {
	animation-delay: -4s;
	background-image: url("./stars/star5.png");
}

section .star.star6 {
	animation-delay: -5s;
	background-image: url("./stars/star6.png");
}

section .star.star7 {
	animation-delay: -6s;
	background-image: url("./stars/star7.png");
}

section .star.star8 {
	animation-delay: -7s;
	background-image: url("./stars/star8.png");
}

@keyframes animate {

	0%,20%,40%,60%,80%,100% {
		opacity: 0;
	}

	10%,30%,50%,70%,90% {
		opacity: 1;
	}

}

@keyframes backgroundmove {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(2);
	}
}
.center {
	display: none;
  	position: fixed;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
  	height:auto;
  	width:500px;
  	padding: 10px 10px 20px 10px;
  	border: 1px solid black;
  	background: #21094e;
  	border-radius:30px;
  	box-shadow: 3px 10px 50px #511281;
  	text-align:center;
  	opacity:0.9;
	z-index: 3;
}
.center h1{
  	font-family: 'Ubuntu Mono', monospace;
  	color:#4ca1a3;
}
.center h3{
  	color: #4ca1a3;
  	font-family: 'Cutive Mono', monospace;
  	font-size:large;
}
.center p{
  	font-family: 'Ubuntu Mono', monospace;
  	color:#d1d9d9;
}
.center br {
	display: block;
	margin: 8px 0;
}
.center a:hover{
	background-color: rgb(100, 100, 100);
}
.equal{
	display: inline-block;
	background:#233e8b;
   	width: 134px;
   	padding: 13px;
	margin-bottom: 5px;
   	text-align: center;
   	color: #1eae98;
  	text-decoration: none;
  	font-family:monospace;
  	border-radius:20px;
   	font-size: medium;
  	font-style:bold;
}
.fa {
  	padding: 10px;
  	border-radius:10px;
  	font-size: 30px;
  	width:15px;
  	height:15px;
  	text-align: center;
  	text-decoration: none;
}
.fa:hover {
  	opacity: 0.7;
}
.fa-facebook {
  	background: #3B5998;
  	color: white;
}
.fa-credit-card {
  	align-content:center;
  	color: #b6c9f0;
}
.fa-instagram {
	background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
	background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
	background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
	color: white;
}


/* Responsive */
@media only screen and (max-width: 450px) {
	.center {
		width: 90%;
	}
	h1 {
		font-size: 3.8rem;
	}
}