@font-face {
  font-family: Ubuntu-bold;
  font-style: bold;
  font-weight: 700;
  src: local("ubuntu-bold"), url("../../fonts/Ubuntu-Bold.ttf");
  font-display: swap;
}

* {
  font-family:
    Ubuntu-bold,
    system-ui,
    -apple-system,
    sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: var(--clr-text);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--clr-primary);
}

section {
  min-height: 700px;
}

select {
  background-color: var(--clr-dropdown-option);
  border: transparent;
  padding: 5px;
  max-width: 4.5rem;
  font-size: clamp(0.5rem, 1rem, 3rem);
  border-radius: var(--cfg-border-radius);
}

#typed-wrapper {
  height: 200px;
}
