/* blessed/cursed by a Salem witch by ur boy Frank */
.thats-fast-container{
    padding: 0;
}
@media (min-width: 600px){
    .thats-fast-container{
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

.thats-fast {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  text-align: center;
  font-family: var(--heading-font-family);
}

@keyframes subtleTextGlow {
  0% { text-shadow: 0 0 2px rgba(98, 168, 20, 0.2), 0 0 4px rgba(98, 168, 20, 0.1); }
  50% { text-shadow: 0 0 4px rgba(98, 168, 20, 0.4), 0 0 8px rgba(98, 168, 20, 0.2); }
  100% { text-shadow: 0 0 2px rgba(98, 168, 20, 0.2), 0 0 4px rgba(98, 168, 20, 0.1); }
}

@keyframes subtleBoxGlow {
  0% { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), 0 0 4px rgba(98, 168, 20, 0.1); }
  50% { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), 0 0 12px rgba(98, 168, 20, 0.2); }
  100% { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24), 0 0 4px rgba(98, 168, 20, 0.1); }
}

.thats-fast > div {
  flex: 1;
  max-width: 50%;
  background-color: #191B22;
  padding: 0 0.75rem 1rem 0.75rem;
  border-radius: 1rem;
  animation: subtleBoxGlow 4s ease-in-out infinite;
  border: 1px solid rgba(98, 168, 20, 0.1);
}

.thats-fast .number-wrapper {
  font-size: 4rem;
  font-style: italic;
  font-weight: 700;
  color: #62a814;
  margin: 0;
  padding: 0;
  letter-spacing: -2px;
  animation: subtleTextGlow 4s ease-in-out infinite;
}

.thats-fast .number-wrapper span {
    margin: 0;
    padding: 0;
}

.thats-fast .number-wrapper::after {
  content: "x";
  margin-left: 0.25rem;
  font-size: 2.5rem;
}

.thats-fast p {
  margin: 0;
}

.section.thats-fast-container > div:nth-last-child(1) > p {
    text-align: left;
    font-family: var(--heading-font-family);
    letter-spacing: -1px;
    font-size: 1.15rem;
    margin: 0.75rem;
    color: #62a814;
}

@media (max-width: 768px) {
    .section.thats-fast-container > div:nth-last-child(1) > p {
        text-align: center;
    }
    .thats-fast > div {
        max-width: 300px;
    }
    .thats-fast p{
        font-size: 1rem;
    }
}