@font-face {
  font-family: Crescendo-514;
  src: url(Crescendo-514Pa.ttf);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Crescendo-514;
  font-weight: bold;
  color: #ffaa00ca;
}

:root {
  --padding: 60px;
}

body{
  overflow: hidden;
  overflow-x: hidden; /* avoid horizontal scroll */
  background: #000000;
}

.title {
  position: absolute;
  overflow: hidden;
  margin: 65px 630px;
  filter: drop-shadow(0 0 20px #fbff02)
          drop-shadow(0 0 20px #ff8d02);
}

.wallpaper img{
  position: absolute;
  width: 120%;
  height: 109%;
  z-index: -1;
  top: 0;
  filter: blur(2px)
          drop-shadow(0 0 3px #EE8E19)
          drop-shadow(0 0 3px #D8631A)
          drop-shadow(0 0 6px #7F1415)
          drop-shadow(0 0 6px #420C10);
}

.wallpaper_2 img{
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.3;
}

.header{
  position: absolute;
  height: 50px;
  width: 110%;
  z-index: -1;
  border: 1px solid #fbff02;
  box-shadow: 0 4px 6px -2px #ff8d02;
  background-image: linear-gradient(to bottom,
  rgba(255,255,255,.05),
  rgba(255,255,255,.15) .5em,
  rgba(255,255,255,.05) 2em,
  rgba(255,255,255,.05) 2em,
  rgba(255,255,255,0)),linear-gradient(to bottom,#222,#222 50%,#000 50%,#000);
  background-size: 100% 100%,100% 2px;
}


.footer{
  width: 110%;
  height: 50px;
  position: absolute;
  margin: 685px 0px;
  border: 1px solid #fbff02;
  box-shadow: 0 -10px 20px #ff8d02;
  background-image: linear-gradient(to bottom,
  rgba(255,255,255,.05),
  rgba(255,255,255,.15) .5em,
  rgba(255,255,255,.05) 2em,
  rgba(255,255,255,.05) 2em,
  rgba(255,255,255,0)),linear-gradient(to bottom,#222,#222 50%,#000 50%,#000);
  background-size: 100% 100%,100% 2px;
}


.footer p{
  text-align: center;
  justify-content: center;
  color: #ffaa00ca;
  font-size: 20px;
}

/** light beams **/
.floodlight {
  display:block;
  margin-top: 680px;
  z-index: -1;
  height:100px; 
  border-radius:800px/50%;    
  color:white;
  position:absolute;
  width:150%; 
  filter: blur(7px) brightness(0.5);
}
.floodlight.left {
  background: linear-gradient(
    to right,
    rgba(255,255,255,.6) 0%,
    rgba(255,255,255,.2) 15%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,0) 100%
  );
  left:10%;
}
.floodlight.right {
  background: linear-gradient(
    to left,
    rgba(255,255,255,.6) 0%,
    rgba(255,255,255,.2) 15%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,0) 100%
  );
  right:10%;
}

/** andimation stuff **/
.floodlight {
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: linear;
}
.left {
  transform-origin:left 50%;
  animation-name: floodlight_left;
}
.right {
  transform-origin:right 50%;
  animation-name: floodlight_right;
}
@keyframes floodlight_left {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-90deg); }
}
@keyframes floodlight_right {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(90deg); }
}


/*tabs*/
.centerThings {
  text-align: center;
}

.tabs {
  height: 100%;
  width: 100%; /* width of the whole tabs section */
  color: #ffaa00ca; /* color of the text in each tab card */
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}


.tabs p{
  color: #ffaa00ca;
  text-align: center;
  justify-content: center;
  margin-top: 10px;
  font-size: 20px;
}

.tabs h1{
  color: #000000;
  text-shadow: 0px 0px 20px #ffaa00;
}

.tabs label {
  order: 1; /* Put labels first */
  width: 200px;
  margin-top: 3.7px;
  display: block;
  height: 43px;
  padding: 1rem 2rem;
  margin-right: 0.5rem;
  cursor: pointer;
  background: #000000;
  font-weight: bold;
  font-size: 25px;
  transition: background ease 0.3s;
}

.tabs label:hover {
  background: #414141;
}

.tabs .tab {
  order: 99; /* Put tabs last*/
  flex-grow: 1;
  width: 100%;
  min-height: 350px; /* minimum height of the tab content */
  display: block; /* HIDES unselected tab content with "none" */
  position: absolute;
  right: -9999px; /* move everything to the right to hide the content (not selected) */
  padding: 1rem;
  background: transparent; /* color of tab content */
  color: #fff;
}

.tabs input[type="radio"] {
  display: none; /* hides circles of radio style */
}

.tabs input[type="radio"]:checked + label {
  background: #414141; /* color of selected tab */
}

.tabs input[type="radio"]:checked + label + .tab {
  display: block; /* SHOWS selected tab */
  position: relative;
  right: 0px;
  transition: .5s ease;
}

@media (max-width: 45em) {
  .tabs .tab,
  .tabs label {
    order: initial;
  }
  .tabs label {
    width: 100%;
    margin-right: 0;
    margin-top: 0.2rem;
  }
}
/*tabs end*/



.container {
  display: grid;
  grid-template-columns: auto;
  gap: 0px;
  position: absolute;
  margin: 150px 460px;
}

.info{
  display: inline-block;
  width: 1100px;
  height: 305px;
  margin-bottom: 30px;
  border: 1px solid #fbff02;
  box-shadow: 0 0 15px #ff8d02;
  background: #222;
  background-image: repeating-linear-gradient(
                    to bottom,
                    transparent 7px,
                    rgba(0, 0, 0, 0.8) 9px,
                    rgba(0, 0, 0, 0.8) 13px,
                    transparent 13px
                  );
  padding: 0.5rem;
}

.token_address{
  position: absolute;
  border: 1px solid #fbff02;
  box-shadow: 0 0 15px #ff8d02;
  background: #222;
  background-image: repeating-linear-gradient(
                    to bottom,
                    transparent 7px,
                    rgba(0, 0, 0, 0.8) 9px,
                    rgba(0, 0, 0, 0.8) 13px,
                    transparent 13px
                  );
  height: 50px;
  width: 500px;
  margin: 20px 500px;
  text-align: center;
  justify-content: center;
}

.token_address p{
  margin-top: 15px;
}

/* Tokenomics cards */
.step-card{ /*how to buy*/
  display: inline-block;
  width: 300px;
  border: 1px solid #fbff02;
  box-shadow: 0 0 15px #ff8d02;
  background: #222;
  background-image: repeating-linear-gradient(
                    to bottom,
                    transparent 7px,
                    rgba(0, 0, 0, 0.8) 9px,
                    rgba(0, 0, 0, 0.8) 13px,
                    transparent 13px
                  );
  margin-top: 20px;
  padding: 0.5rem;
  margin-right: 1.7rem;
}

#tokenomics{
  margin-left: 70px;
}

.tokenomics-card{
  display: inline-block;
  width: 300px;
  height: 200px;
  border: 1px solid #fbff02;
  box-shadow: 0 0 15px #ff8d02;
  background: #222;
  background-image: repeating-linear-gradient(
                    to bottom,
                    transparent 7px,
                    rgba(0, 0, 0, 0.8) 9px,
                    rgba(0, 0, 0, 0.8) 13px,
                    transparent 13px
                  );
  padding: 0.5rem;
  margin-right: 5rem;
}

.tokenomics-card p{
  margin-top: 20px;
}

.tokenomics-card svg{
  height: 50px;
  width: 50px;
}


.buy span{
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  margin-top: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #000000;
  box-shadow: 0 0 15px #ff8d02;
  background-color: #fbff02;
}
/*tokenomics ends*/

/* Navigation links */
.nav-link {
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 3px;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: gold;
  text-shadow: 0 0 5px #ffd277;
}

.nav-link:hover::after {
  width: 100%;
}

