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

body {
  /* use the Tailwind font-sans stack */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(30deg, rgba(51,51,51,1) 33%, rgba(17,17,17,1) 56%);
}

section {
  width: 100%;
  height: 100vh;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.icon-row {
  display: flex;
  gap: calc(1rem + 1vw);
  margin-top: calc(1rem + 2vh);
}

#intro {
  width: calc(10rem + 25vw);
  color: whitesmoke;
  margin-top: calc(0.5rem + 2vh);
  font-size: calc(1rem + 0.5vw);
  text-align: center;
}

section h1 {
  color: whitesmoke;
  font-size: calc(1.5rem + 3vw);
}

i {
  border: none;
  outline: none;
  font-size: calc(1.5rem + 1.5vw);
  color: whitesmoke;
  cursor: pointer;
  border-radius: 2.5px;
  user-select: none;
}

i:active {
  animation: click 0.15s ease-in-out;
}

span {
  color: #fff;
  user-select: none;
}

@keyframes click {
  0%,
  50%,
  100% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  75% {
    transform: scale(1.05);
  }
}
