/* Base styles and font import */
body {
  font-family: 'Oswald', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Large responsive full-width headline */
.company-headline {
  font-weight: 500;
  /* Scales dynamically from mobile to large displays */
  font-size: clamp(2.5rem, 6vw + 1rem, 6rem);
  letter-spacing: 0.1em;
  line-height: 1.2;
}

/* Subhead styling */
.company-subhead {
  font-weight: 400;
  /* Dynamic fluid typography to fit all screen sizes on 1 line */
  font-size: clamp(2rem, 11vw, 12rem);
  line-height: 1.2;
  white-space: nowrap;
}

.company-subhead a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.5s ease;
}

.company-subhead a:hover {
  color: #ffffff;
}