body {
  padding: 0;
  margin: 0;
  background-color: #1f1f1f;
  color: white;
  font-family: 'Capgras', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
}
#main-content {
  align-items: center;
  display: flex;
  flex-direction: column;
}
#content-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  align-items: center;
  justify-items: center;
  width: 100%;
}
#header {
  height: calc(4vw + 7vh);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Capgras', sans-serif;
  font-size: calc(5vw + 3.5vh);
  margin: 40px 0 10px 0;
}
#tagline {
  text-align: center;
  font-family: 'Tagline', sans-serif;
  font-size: 1rem;
  margin: 20px 10px;
}
#tagline p {
  margin: 0;
  padding: 0 20px;
  color: #9d7fff;
  letter-spacing: 1.5px;
  line-height: calc(1.8vw + 1.5vh);
  font-size: calc(1.5vw + 1vh);
}
#tagline p img {
  max-height: 26px;
  height: calc(1vw + 1vh);
}
#logo {
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.cggIcon {
  max-height: 75%;
  padding-right: 10px;
}
#betaMark {
  position: absolute;
  bottom: -2.5vh;
  right: 2vw;
  z-index: 2;
  height: calc(3vh + 5vw);
}
.game-card {
  background-color: #232323;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  width: 22%;
  margin: 20px;
  text-align: center;
  padding: 15px;
  transition: transform 0.2s;
  height: 450px;
}
.game-card h3 {
  white-space: nowrap;
  font-size: 1.6rem;
  color: #626262;
  margin: 0;
  align-content: center;
  flex-grow: 1;
  flex-basis: 10%;
}
.game-card:hover {
  transform: scale(1.05);
}
.game-card a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.game-cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  width: 100%;
}

#tokenomics {
  height: 35px;
    vertical-align: middle;
    align-items: center;
    align-content: center;
    display: flex;
    color: #9d7fff;
    padding-bottom: 20px;
    /* justify-content: center; */
    font-size: 1.5rem;
}

#tokenDeets {
  justify-content: center;
  flex-direction: column;
  align-content: center;
  align-content: center;
  justify-items: center;
  padding: 50px 0;
  text-align: center;
  display: flex;
}

#howToBuy {
  color: #9d7fff;
  padding-top: 50px;
  text-transform: uppercase;
  font-size: 2rem;
  padding-bottom: 20px;
}

#howToInfo {
  color: #626262;
  padding-bottom: 70px;
  text-align: center;
}

#swapSites {
  gap: 50px;
  display: flex;
  justify-content: center;
}

#tokenDeets img {
  height: 50px;
  opacity: 70%;
}

#tokenDeets img:hover {
  opacity: 100%;
}

#totalSupply {
  text-align: center;
    padding-top: 0.5rem;
    font-size: 1rem;
    letter-spacing: 2.5px;
    /* color: #626262; */
  color: #9d7fff;
}

.chart-with-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.pie-chart-container {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: conic-gradient(#ff165d 0% 60%, /* Rewards: 50% */ #d4104d 60% 80%, /* Development: 25% */ #a60a3a 80% 90%, /* Marketing: 15% */ #8c0c33 90% 100% /* Liquidity: 10% */)
}

.legend {
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.legend-item {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      font-size: 1rem;
      letter-spacing: .15rem;
      color: #626262;
      text-transform: uppercase;
      padding-left: 10px;
}

.legend-color {
  height: 15px;
  width: 15px;
  margin-right: 10px;
  border-radius: 3px;
}

.rewards { background-color: #ff165d; }
.development { background-color: #d4104d; }
.marketing { background-color: #a60a3a; }
.liquidity { background-color: #8c0c33; }

@media (max-width: 750px) {
  .game-cards-container {
      flex-direction: column;
  }
  .game-card {
    width: 100%;
    max-width: -webkit-fill-available;
    height: 500px;
  }
  .chart-with-legend {
    flex-direction: column;
  }
  .legend {
    margin-left: 0;
    padding-top: 20px;
  }
  #swapSites {
    flex-direction: column;
    align-items: center;
  }
}

.game-card div {
  width: 100%;
  /* height: 100%; */
  flex-grow: 4;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  box-shadow: 0 0 150px #3f3f3f;
  border: #676767;
  border-width: 1px;
  border-style: solid;
  margin-top: 10px;
}

.game-card p {
  margin: 15px 0 0;
  font-family: 'Capgras', sans-serif;
  flex-grow: 1;
  font-size: 2.3rem;
  text-transform: uppercase;
  vertical-align: bottom;
  align-content: flex-end;
}

.cardOne {
  background-image: url('./card_spacedoge.jpg');
  flex-basis: 50%;
}

/* #cardOneLogo {
  width: 100%;
  padding-right: 8px;
  z-index: 999;
  flex-basis: 10%;
  flex-grow: 1;
} */

#cardOneLogo {
  z-index: 999;
  background: url(./logo.png);
  flex-grow: 1;
  width: 100%;
  align-content: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 5px;
  height: 45px;
  position: relative;
}

.cardTwo {
  flex-basis: 50%;
  background-image: url('./card_dirtyrats.jpg');
}

.cardThree {
  flex-basis: 50%;
  background-image: url('./card_comingsoon.jpg');
}

  .capgrasRed {
    color: #ff165d;
  }

#dirtyRatsLogo {
  letter-spacing: 2px;
  font-family: 'Logo', sans-serif;
  font-size: 2.2rem;
  color: rgb(238 239 188);
  text-shadow: 2px 3px 0 black;
  z-index: 999;
  flex-basis: 10%;
  flex-grow: 1;
  align-content: center;
  top: 5px;
  position: relative;
}


@font-face {
    font-family: 'Capgras';
    src: url('./din_condensed_bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Capgras';
    src: url('./din_condensed_bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
  font-family: 'Tagline';
  src: url('./montserrat.bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Logo';
  src: url('./beltway-prophecy-irregular.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}