@import url("./font.css");
@import url("./root.css");
@import url("./utility.css");
@import url("./hue-anim.css");

/* component css */
@import url("./component/about.css");
@import url("./component/footer.css");
@import url("./component/hero.css");
@import url("./component/nav.css");
@import url("./component/specialisation.css");
@import url("./component/services.css");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bolder;
  font-family: "Tomato Grotesk", "Inter", sans-serif;
}

h1 {
  font-size: 52px;
  letter-spacing: 1px;
}

h2 {
  font-size: 30px;
  letter-spacing: 1px;
}

.heading {
  font-size: 60px;
}

p {
  line-height: 1.5;
}

a {
  cursor: pointer;
  text-decoration: none;
}

p,
a,
label,
span,
button {
  font-family: "Tomato Grotesk", "Inter", sans-serif !important;
}

p {
  font-size: 18px;
  color: var(--color);
  font-family: "Inter", sans-serif !important;
}

@media (max-width: 1000px) {
  h1 {
    font-size: 28px;
  }

  .heading {
    font-size: 35px;
  }
}

body {
  width: 100%;
  background-image: url("../images/background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--background-color);
  background-attachment: fixed;
}

main {
  width: 80%;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  main {
    width: 90%;
    margin: 0 auto;
  }
}

.cta {

}

.dark-cta {
  border:1px solid rgb(255, 255, 255); max-width: 200px; padding: 16px; justify-content: space-between; color: white;
  display: flex;
  transition: .5s ease;
  background-color: black;
}

.dark-cta:hover {
  transition: .5s ease;
  filter: invert();
}