/* root */
:root {
  --black: #000;
  --white: #fff;
  --yellow: #ffa500;
  --creamy : #FFFBF5;
}
@font-face {
  font-family: "Stopbuck";
  src: url("../fonts/Stopbuck.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "Stopbuck", sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #070802;
}

/* NAVBAR */
.topnav {
  background-color: #FFFBF5;
  border: 2px solid black;
  padding: 20px;
  margin: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 2px 1px rgba(0,0,0,0.09), 0 4px 2px rgba(0,0,0,0.09), 0 8px 4px rgba(0,0,0,0.09), 0 16px 8px rgba(0,0,0,0.09), 0 32px 16px rgba(0,0,0,0.09);
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 1000;
  margin-top: 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 150px;
  height: 50px;
  margin-right: 10px;
  border-radius: 20px;

  /* background transparent */
  background-color: transparent;
  box-shadow: rgba(240, 46, 170, 0.2);
  border: 1px solid black;

}
.logo span {
  font-size: 1.5em;
  color: #000;
}

.nav {
  display: flex;
  list-style: none;
  padding: 0;
}

.nav li {
  margin-right: 20px;
}

.nav a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}
.icon-navbar {
  display: none;
}

.button-buy {
  background-color: #ffff00;
  border: 2px solid black;
  padding: 10px 20px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;

}
.button-buy:hover {
  background-color: #ffa500;
  color: white;
  box-shadow: 0 2px 1px rgba(0,0,0,0.09), 0 4px 2px rgba(0,0,0,0.09), 0 8px 4px rgba(0,0,0,0.09), 0 16px 8px rgba(0,0,0,0.09), 0 32px 16px rgba(0,0,0,0.09);

}
/* NAVBAR */

/* HERO */
.hero {
  background-image: url("../images/banner1.png");
  height: 900px;
  image-rendering: -webkit-optimize-contrast;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  image-rendering: pixelated;
  -ms-interpolation-mode: nearest-neighbor;
}
.hero-social-media{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    font-size: 50px;
    background-color: var(--creamy);
    border-radius: 20px;
    border: 1px solid black;
    width: 30%;
    margin-left:10px;
 
}
.item-social{
    margin: 0 10px;
    box-shadow: rgba(240, 46, 170, 0.2);
}

.hero-social-media-telegram{
    background-color: #0088cc;
    border-radius: 20px;
    padding: 10px;
    border: 1px solid black;
}
.hero-social-media-twitter{
    background-color: #201a17;
    border-radius: 20px;
    padding: 10px;
    border: 1px solid black;
}
.hero-social-media-dexscanner{
    background-color: #201a17;
    border-radius: 20px;
    padding: 10px;
    border: 1px solid black;
}
.hero-social-media-dextools{
    background-color: #0088cc;
    border-radius: 20px;
    padding: 10px;
    border: 1px solid black;
}
.box-moving {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background-color: #070802;
}
.box {
  display: flex;
  align-items:center;
}
.box .text-box{
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  padding: 10px;
}

/* ABOUT */
.about {
  background-image: url("../images/banner2.png");
  height: 900px;
  image-rendering: -webkit-optimize-contrast;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  image-rendering: pixelated;
  -ms-interpolation-mode: nearest-neighbor;
}
/* ABOUT */
/* BANNER */
.how_to_buy {
  background-image: url("../images/banner3.png");
  height: 900px;
  image-rendering: -webkit-optimize-contrast;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  image-rendering: pixelated;
  -ms-interpolation-mode: nearest-neighbor;
}
/* BANNER */
.join_us {
  background-image: url("../images/banner4.png");
  height: 900px;
  image-rendering: -webkit-optimize-contrast;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  image-rendering: pixelated;
  -ms-interpolation-mode: nearest-neighbor;
}
.social-media{
  display: flex;
  justify-content: center;
  align-items: center;
  top: 70%;
  position: relative;
}
.social-media-item {
  background-color: transparent;
  border-radius: 10px;
  padding: 20px;
  margin-right: 20px;
  box-shadow: rgba(2, 2, 2, 0) 5px 5px, rgba(0, 0, 0, 0.3) 10px 10px,
    rgba(240, 46, 170, 0.2) 15px 15px, rgba(240, 46, 170, 0.1) 20px 20px,
    rgba(240, 46, 170, 0.05) 25px 25px;
}

/* FOOTER */

.floating-social-media{
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  font-size: 50px;
  background-color: var(--creamy);
  border-radius: 20px;
  border: 1px solid black;
  width: 30%;
  margin-left:10px;
  margin-bottom: 20px;
  animation: glow 1s infinite alternate;
}
.icon{
  margin: 0 5px;
}
@keyframes glow {
  from {
    box-shadow: 0 0 10px -10px #ffb002;
  }
  to {
    box-shadow: 0 0 10px 10px #ffb002;
  }
}
.item-social{
    margin: 0 10px;
    box-shadow: rgba(240, 46, 170, 0.2);
    color : #FFFBF5;
    background-color: var(--yellow);
    border-radius: 10px;
    padding: 10px;
    text-decoration: none;

}

