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

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

a {
  text-decoration: none;
}

.sc .sc-title {
  font-size: 45px;
  font-weight: 600;
  background-image: linear-gradient(to left, #FF0000, #FF9B9B);
  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, #FFAF00, #FFDF97);
  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, #FFDE00, #FFF5B2);
  color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 30px;
}

.symbol-chart {
  display: grid;
  grid-template-columns: repeat(11, 100px);
  grid-template-rows: repeat(8, 100px);
  grid-gap: 10px;
  margin: auto;
  max-width: 1200px;
  justify-content: center;
  /* background: #10e7dc; */
}

.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: #2B2B2B;
  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: #222;
}

.symbol-chart-element:hover::after {
  top: 105%;
  opacity: 1;
}

.symbol-chart-element {
  cursor: pointer;
}

.sc-navigation a {
  font-size: 18px;
  color: #ededed;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  margin-left: 20px;
  transition: 0.3s;
}

.sc-navigation a:hover,
.sc-navigation a.active {
  color: #91daf7;
}

.one {
  background: linear-gradient(to bottom right, #FF2912 0%, #FFF44B 100%);
}

.one .title,
.one .description {
  background: -webkit-linear-gradient(#B52617, #AEA736);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.two {
  background: linear-gradient(to bottom right, #FF1900 0%, #FF5F4E 100%);
}

.two .title,
.two .description {
  background: -webkit-linear-gradient(#B82819, #B1473B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.three {
  background: linear-gradient(to bottom right, #41A113 0%, #62A642 100%);
}

.three .title,
.three .description {
  background: -webkit-linear-gradient(#316D14, #436433);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.four {
  background: linear-gradient(to bottom right, #FFFFFF 0%, #FFFDB0 100%);
}

.four .title,
.four .description {
  background: -webkit-linear-gradient(#818181, #A8A777);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.five {
  background: linear-gradient(to bottom right, #764400 0%, #8B6025 100%);
}

.five .title,
.five .description {
  background: -webkit-linear-gradient(#563303, #5A4322);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.six {
  background: linear-gradient(to bottom right, #144DFF 0%, #27A2FF 100%);
}

.six .title,
.six .description {
  background: -webkit-linear-gradient(#193AA4, #24679A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1 {
  font-size: 300px;
  text-align: center;
}

h2 {
  font-size: 45px;
  font-weight: 600;
  background-image: linear-gradient(to left, #FF0000, #FF9B9B);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  text-align: center;
  margin-bottom: 30px;
}

.sc .sc-description-two {
  font-size: 25px;
  font-weight: 500;
  background-image: linear-gradient(to left, #60D838, #89F94F);
  color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 30px;
}

.empty-space-1 {
  grid-column: 1/3;
  grid-row: 1;
}

.empty-space-2 {
  grid-column: 4/9;
  grid-row: 1;
}
.empty-space-3 {
  grid-column: 10/13;
  grid-row: 1;
}

.empty-space-4 {
  grid-column: 1/3;
  grid-row: 2;
}

.empty-space-5 {
  grid-column: 4/9;
  grid-row: 2;
}
.empty-space-6 {
  grid-column: 10/13;
  grid-row: 2;
}

.empty-space-7 {
  grid-column: 1/3;
  grid-row: 3;
}

.empty-space-8 {
  grid-column: 4/9;
  grid-row: 3;
}
.empty-space-9 {
  grid-column: 10/13;
  grid-row: 3;
}

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

.popup {
  max-width: 500px;
  min-height: 380px;
  max-height: 380px;
  background: #f2d9d9;
  border-radius: 6px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.1);
  text-align: center;
  padding: 5px 30px 30px;
  color: #333;
  visibility: hidden;
  transition: transform 1.1s, top 1.1s;
}

.open-popup {
  visibility: visible;
  top: 30%;
  transform: translate(-50%, 35%) scale(1);
}

.popup h2 {
  font-size: 38px;
  font-weight: 500;
  margin: 30px 0 10px;
  background-image: linear-gradient(to left, #fff, #0996f5, #fff);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  text-align: center;
}

.popup p {
  background: #f3eeee;
  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: #3abce0;
  color: #fff;
  border: 0;
  outline: none;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}
