/* @import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css"); */
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
  font-family: var(--font-main);
  font-size: var(--text-md);
  line-height: var(--lh-normal);
  font-weight: var(--fw-regular);
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}

h1, h2, h3, h4, h5, h6, p {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

/*//////////// typography //////////*/
.typo-hero-title {
  font-family: var(--font-main);
  font-size: var(--text-2xl);
  line-height: var(--lh-tight);
  font-weight: var(--fw-bold);
}

.typo-section-title {
  font-family: var(--font-main);
  font-size: var(--text-2xl);
  line-height: var(--lh-tight);
  font-weight: var(--fw-regular);
}

.typo-section-subtitle {
  font-family: var(--font-main);
  font-size: var(--text-xl);
  line-height: var(--lh-normal);
  font-weight: var(--fw-medium);
}

.typo-section-content {
  font-family: var(--font-main);
  font-size: var(--text-md);
  line-height: var(--lh-normal);
  font-weight: var(--fw-regular);
}

.typo-section-subcontent {
  font-family: var(--font-main);
  font-size: var(--text-sm);
  line-height: var(--lh-normal);
  font-weight: var(--fw-regular);
}

.typo-nav-links {
  font-family: var(--font-main);
  font-size: var(--text-sm);
  line-height: var(--lh-normal);
  font-weight: var(--fw-medium);
}
