/* Lato Font */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

/* Global Styles */
body {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333; /* Default text color */
}

/* Heading Styles */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.065em;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 3.75rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.5rem;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.5rem;
}

/* Subtitle Styles */
.underTitle {
  font-family: "Lato";
  font-weight: 300;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

/* Paragraph Styles */
p {
  font-size: 1rem;
  margin-bottom: 1.5em;
}

/* Link Styles */
a {
  text-decoration: none;
  color: #007bff; /* Link color */
}

a:hover {
  text-decoration: underline;
}

/* Label Styles */
label {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  display: block;
}

/* Span Styles */
span {
  font-size: 1rem;
  font-weight: 700;
}

/* Responsive Font Sizes */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.8rem;
  }

  h4 {
    font-size: 1.5rem;
  }

  h5 {
    font-size: 1.2rem;
  }

  .underTitle {
    font-size: 1.2rem;
  }

  p {
    font-size: 0.9rem;
  }

  a {
    font-size: 0.9rem;
  }

  label {
    font-size: 0.9rem;
  }

  span {
    font-size: 0.9rem;
  }
}
