@font-face{
  font-family: 'SourceCodePro'; 
  src: url('../fonts/SourceCodePro.woff') format('woff');
  font-weight: normal;
}

@keyframes joinButton {
  0% {
    background-position: 0% 50%;
    color: #FFF;
  }
  50% {
    background-position: 100% 50%;
    color: #008741;
  }
  100% {
    background-position: 0% 50%;
    color: #FFF;
  }
}

html,body{
  padding: 0;
  margin:0;
  font-family: source code pro;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: 'SourceCodePro'; 
}

body{
  background:url("../images/BG.png") no-repeat center fixed;  
}

 .head_nav {
      padding: 0px 32px;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    flex-shrink: 0; 
    height: 90px;
    position: relative;
    }
 .logo {
      flex-shrink: 0;
      width: 152.11px; height: 37px;
      position: relative;
    }
 .social {
      display: flex;
      flex-direction: row;
      gap: 16px;
      align-items: flex-start;
      justify-content: flex-start;
      flex-shrink: 0;
      position: relative;
      padding: 0px;
    }


 .twitter a, .discord a{
      display: inline-block;
      flex-shrink: 0;
      width: 30px; 
      height: 30px;
      line-height: 30px;
      position: relative;
      margin: 1px;
      cursor: pointer;
    }

    .social a:hover{
      border-radius: 4px;
      border: 1px solid #00fe80;
      margin: 0;
    }

 .content_box {
      padding: 10px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: center;
      justify-content: center;
    flex-shrink: 0;
      position: relative;
    }
 .killer {
      flex-shrink: 0;
      width: 583px; height: 431px;
      left: calc(50% - 290.5px);
      top: calc(70% - 215px);
    }
 .title{
      background: rgba(0, 0, 0, 0.75);
      border-radius: 32px;
      border-style: solid; 
      border-color: #00fe80;
      border-width: 4px;
      padding: 72px 48px;
      display: flex;
      flex-direction: column;
      gap: 32px;
      align-items: center;
      justify-content: center;
    flex-shrink: 0;
      position: relative;
    }

.headline{
text-align: center;
letter-spacing: -0.04em;
background: linear-gradient(90deg, #00C6F5 0%, #00FE80 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
}
.headline-1{
font-style: normal;
font-weight: 100;
font-size: 36px;
line-height: 0.9;
}
.headline-2{
  font-size: 80px;
  font-weight: 900;
  font-variation-settings: "wght" 700;
  letter-spacing:0.05em;
  background: linear-gradient(90deg, #00C6F5 0%, #00FE80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

 .description{
      font-size: 24px;
      color: #00e5ff;
      font-weight: 700;
      width: 90%;
      text-align: center;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center
    }
 .line {
      align-self: stretch;flex-shrink: 0;
      position: relative;
      overflow: visible;
    }
 .join {
      font-size: 24px;
      text-decoration: none;
      font-weight: 700;
      color: #000000;
      text-align: center;
      position: relative;
      background: linear-gradient(90deg, rgba(0, 198, 245, 1.00) 0%,rgba(0, 254, 128, 1.00) 100%);
      background-size: 200% 200%;
      border-radius: 8px;
      padding: 24px 30px 24px 30px;
      display: flex;
      flex-direction: row;
      gap: 10px;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
      animation: joinButton 1.5s ease infinite;
      transition: 1s cubic-bezier(0.39, 0.575, 0.565, 1);
    }

  .join:hover{
    background: linear-gradient(-45deg, #00def2, #00e7ad);
    color: #FFF;
    box-shadow: #e1ff00 0 0 96px;
  }

  @media only screen and (max-width:992px) {
    .head_nav {
      padding: 0px 16px;
    }
    .content_box{
      padding:16px;
      gap: 0;
    }
    .title{
      padding: 32px 16px;
      gap: 0;
    }
    .description{
      font-size: 14px;
    }
    .join{
      margin-top: 16px;
      font-size: 16px;
    }
    .headline-2{
      font-size: 32px;
    }
    .headline-1{
      font-size: 16px;
      line-height: 1.5;
      margin-top: 20px;
      }
	.killer {	
	     width: 260px; 
		 height: 220px;
    
  }
}