*,
*::after,
*::before {
box-sizing: border-box;
}

body {
  background:  #deb887;
  font-family: "Poppins", sans-serif;
  margin: 100px;
  }

a {
text-decoration: none;
}

.sc {
margin-bottom: 125px;
}

.sc .sc-title {
font-size: 45px;
font-weight: 600;
background-image: linear-gradient(to left, #37AAF7, #37AAF7);
color: transparent;
background-clip: text;
-webkit-background-clip: text;
text-align: center;
margin-bottom: 30px;
}

.sc .sc-description {
font-size: 35px;
font-weight: 500;
background-image: linear-gradient(to left, #33E5FF, #75E6F7);
color: transparent;
background-clip: text;
-webkit-background-clip: text;
text-align: center;
margin-bottom: 10px;
}

.sc .sc-description-one {
font-size: 25px;
font-weight: 500;
background-image: linear-gradient(to left, #6BFFC9, #1AFF00);
color: transparent;
background-clip: text;
text-align: center;
margin-bottom: 30px;
}

.sc .sc-navigation {
  font-size: 50px;
  font-weight: 600;
  color: black;
  text-align: center;
  margin-bottom: 30px;
}

.sc .sc-navigation .nav-link {
  color: black;
}

.sc .sc-description-two {
  font-size: 45px;
  font-weight: 1000;
  background-image: linear-gradient(to left, #d3f0df, #ee9f00);
  color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 150px;
}

.info {
  font-size: 30px;
  font-weight: 500;
  background-image: linear-gradient(to left, #d3f0df, #ee6f00);
  color: transparent;
  background-clip: text;
  text-align: center;
}

.symbol-chart {
  display: grid;
  grid-template-columns: repeat(11, 100px);
  grid-template-rows: repeat(8, 100px);
  grid-gap: 10px;
  margin: auto;
  max-width: 1300px;
  justify-content: center;
  }
  
  .symbol-chart-element {
  padding: 4px;
  position: relative;
  z-index: 1;
  cursor: default;
  transition: all 0.3s ease;
  }
  
  .symbol-chart-element .symbol-chart-element-inner {
  background: #131539;
  padding: 10px 15px 20px;
  width: 100%;
  height: 100%;
  transition: inherit;
  }
  
  .symbol-chart-element .title {
  font: 700 31px "Poppins", sans-serif;
  margin: 0 0 0.15em;
  transition: 0.8s ease 600ms;
  }
  
  .symbol-chart-element .description {
  font: 500 8px "Poppins", sans-serif;
  }
  
  .symbol-chart-element:hover {
  transform: scale(1.44);
  z-index: 10;
  }
  .symbol-chart-element:hover .symbol-chart-element-inner {
  background: transparent;
  }
  
  .symbol-chart-element:hover .title,
  .symbol-chart-element:hover .description {
  -webkit-text-fill-color:  #000000;
  }
  
  .symbol-chart-element:hover::after {
  top: 105%;
  opacity: 1;
  }
  
  .symbol-chart-element {
  cursor: pointer;
  }
  
  .one {
  background: linear-gradient(to bottom right, #F95A5A 0%, #FD3B3B 100%);
  }
  
  .one .title,
  .one .description {
  background: -webkit-linear-gradient(#FD1C42, #FF5151);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
  
  .two {
  background: linear-gradient(to bottom right, #30D0FF 0%, #00C4FF 100%);
  }
  
  .two .title,
  .two .description {
  background: -webkit-linear-gradient(#32AEFF, #009AFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
  
  .three {
  background: linear-gradient(to bottom right, #4EFF4E 0%, #00FF00 100%);
  }
  
  .three .title,
  .three .description {
  background: -webkit-linear-gradient(#57E678, #00FF3C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
  
  .four {
  background: linear-gradient(to bottom right, #FF00E6 0%, #F66BE8 100%);
  }
  
  .four .title,
  .four .description {
  background: -webkit-linear-gradient(#EF51FF, #D931EC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
  
  .five {
  background: linear-gradient(to bottom right, #E6FF00 0%, #EEFD65 100%);
  }
  
  .five .title,
  .five .description {
  background: -webkit-linear-gradient(#D5FF00, #E3FF51);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }

.empty-space-1 {
  grid-column: 4 /  span 5;
  grid-row: 1;
}

.wrapper-popup {
  position: relative;
  margin-top: -100px;
}

.popup {
  max-width: 500px;
  min-height: 380px;
  max-height: 380px;
  background: #FCFF7C;
  border-radius: 6px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.1);
  text-align: center;
  padding: 5px 30px 30px;
  color: #000000;
  visibility: hidden;
  transition: transform 1.1s, top 1.1s;
  }
  
  .open-popup {
  visibility: visible;
  top: 50%;
  transform: translate(-50%, 35%) scale(1);
  }
  
  .popup h2 {
  font-size: 38px;
  font-weight: 500;
  margin: 30px 0 10px;
  background-image: linear-gradient(to left, #000000, #332F3A, #000000);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  text-align: center;
  }
  
  .popup p {
  background: #FFF6C6;
  min-height: 210px;
  max-height: 210px;
  font-size: 16px;
  text-align: center;
  padding: 15px;
  border-radius: 20px;
  overflow: scroll;
  scrollbar-width: thin;
  }
  
  .popup button {
  width: 40%;
  margin-top: 0px;
  padding: 10px 0;
  background: #F7FF00;
  color: #000000;
  border: 0;
  outline: none;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  }
  