/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap');

.text-gradient {
  font-family: 'Inter', sans-serif; /* Use Inter Semi-Bold */
  font-weight: 600; /* Ensure Semi-Bold weight is applied */
  font-size: 72px; /* Adjust the font size as needed */
  color: transparent;
  background-image: -webkit-linear-gradient(0deg, #f44336 0%, #ff5722 5%, #ff9800 10%, #ffc107 15%, #ffeb3b 20%);
  background-clip: text;
  -webkit-background-clip: text;
  background-size: 100% 100%; /* Ensure the gradient aligns with the text */
}
