*,
*::after,
*::before {
  box-sizing: border-box;
}

body {
  /* 변경 */
  background: #2f4f4f;
  font-family: "Poppins", sans-serif;
  margin: 100px;
}

a {
  text-decoration: none;
}

.sc {
  margin-bottom: 125px;
}

.sc .sc-title {
  font-size: 100px;
  font-weight: 600;
  /* 변경 */
  background-image: linear-gradient(to left, #0084ff, #c4e7ff);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  text-align: center;
  margin-bottom: 30px;
}

.sc .sc-description {
  font-size: 50px;
  font-weight: 500;
  /* 변경 */
  background-image: linear-gradient(to left, #dbd3f0, #7700ee);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  text-align: center;
  margin-bottom: 10px;
}

.sc .sc-description-one {
  font-size: 40px;
  font-weight: 500;
  /* 변경 */
  background-image: linear-gradient(to left, #d3f0df, #1cee00);
  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(20, 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: #1d384b;
  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;
}