section {
  border: 1px solid white;
  border-radius: 60px 60px 0 0;
  margin: 10px;
  padding: 25px;
  background-color: black;
  box-shadow: 0 0 15px #00e3ff;
}

section h4 {
  font-size: var(--font-size-9);
}

.hashtag {
  font-size: var(--font-size-10);
  color: var(--blue);
}

.blue-underline {
  border-bottom: 1px solid var(--blue);
}

.links {
  display: flex;
  flex-direction: column;
}

.links a {
  font-size: var(--font-size-6);
  width: fit-content;
}

section ul li svg {
  width: var(--font-size-5);
}

section {
  font-size: var(--font-size-5);
}

section p {
  font-size: var(--font-size-5);
}

section li {
  font-size: var(--font-size-5);
}

.section-link {
  font-size: var(--font-size-5);
}

@media only screen and (min-width: 600px) {}

/* desktop */
@media only screen and (min-width: 1200px) {
  section {
    width: var(--desktop-width);
    margin: 0 auto;
    box-shadow: 0 0 40px #00e3ff;
    padding: 35px;
  }

  section h4 {
    font-size: var(--font-size-10);
    text-wrap: nowrap;
  }

  .blue-underline::after {
    width: 200px;
  }

  .blue-underline {
    border-bottom: 1px solid var(--blue);
    width: 300px;
  }

  .links a {
    font-size: var(--font-size-7);
  }

  section ul li svg {
    width: var(--font-size-6);
    height: 20px;
  }

  section {
    font-size: var(--font-size-6);
  }

  section p {
    font-size: var(--font-size-6);
  }

  section li {
    font-size: var(--font-size-6);
  }


  .section-link {
    font-size: var(--font-size-6);
  }
}