:root {
  --light-cyan: hsl(193, 38%, 86%);
  --neon-green: hsl(150, 100%, 66%);

  --grayish-blue: hsl(217, 19%, 38%);
  ---dark-grayish-blue: hsl(217, 19%, 24%);
  --dark-blue: hsl(218, 23%, 16%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
}

.wrapper {
  height: 100vh;
  width: 100vw;
  background-color: var(--dark-blue);
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 90%;
  height: auto;
  max-height: 80%;
  padding: 30px;
  background-color: var(---dark-grayish-blue);
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heading {
  color: var(--neon-green);
  /* text-align: center; */
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 14px;
  padding-top: 20px;
}

.quote {
  color: var(--light-cyan);
  font-size: 28px;
  text-align: center;
  letter-spacing: -0.5px;
  padding: 32px 0 16px 0;
}

.iconContainer {
  position: relative;
  height: calc(24 * 3px);
  width: calc(24 * 3px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--neon-green);
  border-radius: 50%;
  top: 65px;
  cursor: pointer;
}

.pc-svg {
  display: none;
}

@media (min-width: 1440px) {
  .container {
    width: 500px;
  }

  .quote {
    padding-bottom: 16px;
  }

  .mobile-svg {
    display: none;
  }

  .pc-svg {
    display: inline-block;
  }
}
