/*########## I M P O R T S ##########*/

@import url("https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:ital,wght@1,300&display=swap");

/*########## S I T E ##########*/
html {
  scroll-behavior: smooth;
}

body {  
  background: #000;
  color: #fff;
  margin: 0;
  min-height: 100vh;
  font-family: "Fira Sans Condensed", sans-serif;
  overflow-x: hidden;
}

a:link, a:visited, a:active, a:hover {
  color: rgb(255, 255, 255);
}


@keyframes shine {
	0% {background-position: -100%;}
	100% {background-position: 100%;}
}

img {
  max-width: 100%;
}

.contact {
  width: 80%;
  margin: 50px auto;
  padding: 20px;
}

.contact-info {
  text-align: center;
}
/*########## END | S I T E ##########*/

/*########## F R O Z E N ##########*/
h1, h2, h3, h4, h5 {
  background: url(/img/frozen.jpg);
  -webkit-background-clip: text;
	background-size: contain;
	width: 100%;
	text-align: center;
	color: transparent;
	font-weight: 90;  
	font-size: 4vw;
	margin: 0;  
	position: relative;

  &::before {
		content: attr(data-heading);
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		background: linear-gradient(45deg, rgba(255,255,255,0) 45%,rgba(255,255,255,0.8) 50%,rgba(255,255,255,0) 55%,rgba(255,255,255,0) 100%);
		-webkit-background-clip: text;
		color: transparent;
		mix-blend-mode: screen;
		animation: shine 1s infinite;
		background-size: 200%;
		text-shadow: 
			2px 2px 10px rgba(#000, 0.2),
			-2px 2px 10px rgba(#000, 0.2),
			-2px -2px 10px rgba(#000, 0.2);
	}
}

/*########## END | F R O Z E N ##########*/

/*########## C O N T A I N E R ##########*/

#header .page {
  position: fixed;
  background-image: linear-gradient(120deg, #0a0e19 1%, transparent 100%);
  width: 100%;
  height: 100%;
  z-index: 2;
}

#header .page-overlay {
  position: fixed;
  width: 100%;
  height: 100%; 
  background-image: url(../img/background.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.animation {
  position: fixed;
  width: 100%;
  height: 100%; 
  background-image: url(../img/animation.gif); 
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

#header .content {
  position: absolute;
  margin-left: 10%;
}
/*########## END | C O N T A I N E R ##########*/

/*########## L O G O / I C O N S ##########*/
#header img.logo {
  width: 500px;
  margin: 0 auto;
  animation-name: zoom;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-delay: 0.1s;
}

#header .item {
  display: block; 
  width: 100px;
  margin-top: 25px; 
}

#header a {
  text-decoration: none;
}

#header a img {
  transition: 0.5s;
  filter: grayscale(100%);
}

#header a:hover img {
  transform: scale3d(1.1, 1.1, 1.1);
  filter: grayscale(0%);
}

#header a {
  color: #ffffff;
  transition: 0.5s;
}

#header a:hover {
  transform: scale3d(1.1, 1.1, 1.1);
}

#header .item {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

#header .item-name {
  position: absolute;
  top: 50%;
  left: 50%; 
  transform: translate(-30%, -50%);
  opacity: 0;
  transition: opacity 0.5s;
  letter-spacing: 5px; 
}

#header .item:hover .item-name {
  opacity: 0.8;
}

h6 { 
  background: url(/img/frozen.jpg);
  -webkit-background-clip: text;
	background-size: contain;
	width: 100%;
	text-align: center;
	color: transparent;
	font-weight: 90;  
	font-size: 3vw;
	position: relative;
  padding-left: 120px;
  margin: 0;
}

.discord-widget {
  position: fixed;
  bottom: 20px;
  transform: translateX(-50%);
  padding: 20px;
  z-index: -2;
}

.footer {
  position: fixed;
  bottom: 0;
  right: 0;
  color: #fff;
  text-align: center;
  padding: 20px;
}
/*########## END | L O G O / I C O N S ##########*/

/*########## C O N N E C T ##########*/
#header .connect {
  width: 350px;
  padding: 10px;
  margin: auto;
  text-align: center;
  border: 1px solid #00a7c8;
  color: #ffffff;
  border-radius: 15px;
  animation-delay: 0.9s;
}

#header span {
  font-weight: 600;
}

#header .button-copy {
  background-color: rgb(232, 176, 21);
  box-shadow: #fff;
  border-radius: 5px;  
  margin-top: 10px;
  margin-left: 5px;
  padding: 5px;
  border: none;
  font-family: "Fira Sans Condensed", sans-serif;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  animation: inpulse 2s infinite;
}
/*########## END | C O N N E C T ##########*/


/*########## M A I N  C O N T E N T ##########*/
.main-content {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  border: 1px solid #00a7c8;
  width: 50%;
  min-height: 90%;
  position: absolute;
  top: 1.5%;
  right: 0;
  padding: 15px;
  margin-right: 25px;
  text-align: center;
  font-size: 28px; 
  color: #fff;
  animation-delay: 0.9s;
  z-index: 3;
}
/*########## END | M A I N  C O N T E N T ##########*/

@keyframes zoom {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(0.85);
  }
  to {
    transform: scale(1);
  }
}

@-webkit-keyframes inpulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.511);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

@keyframes inpulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.511);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.511);
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.511);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

/*#################### T A B L E T T ####################*/
@media screen and (max-width: 1429px) {
  .page-overlay {  
    background-position: center;
  }
  
  .animation {
    display: none;
  }

  #header .content {    
    margin: inherit;
    top: 0;
    transform: none;
    padding: 5px 0;
  }

  #header .item {
    margin-top: 15px;
    width: 20%;
    float: left; 
    box-sizing: border-box;
    text-align: center;
  }

  #header .item img {
    max-width: 40px; 
    width: 100%;
  }

  #header .item-name {
    font-size: 50px;
    display: none;
    text-align: center;
  }  

  .main-content {
    top: 20px;
    right: 0;
    padding: 10px;
    text-align: center;
  }
  .discord-widget {
    position: fixed;
    bottom: 20px;
    transform: translateX(-50%);
    padding: 20px;
    color: #fff; 
  }
  
  .footer {
    position: fixed;
    bottom: 0;
    right: 10;
    color: #fff;
    text-align: center;
    padding: 20px;
  }
}

/*########## L A N D S C A P E ##########*/
@media screen and (max-width: 1280px) {
  .page-overlay {  
    background-position: center;
  }

  .animation {
    display: none;
  }

  .main-content {
    position: absolute;
    top: 340px;
    left: 10px;
    width: 90%;
  }
  .discord-widget {
    position: inherit;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 20px;
    color: #fff; 
  }
  
  footer {
    position: fixed;
    bottom: 0;
    color: #fff;
    text-align: center;
    padding: 20px;
  }
}

/*########## M A I N  C O N T E N T ##########*/
@media screen and (max-width: 906px) {
  .discord-widget {
    display: none;
  }
}




