* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: unset;
  padding: unset;
}

html {
  font-size: 16px;
}

body {
  background: #ffffff;
  color: var(--primary-dark-color);
  font-family: var(--tikTok);
}

.container-content {
  max-width: 1200px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.underline {
  text-decoration: underline;
}

.bold {
  font-weight: 700;
}

img {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.nav-underline {
  position: relative;
}

.nav-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 1px;
  width: 0%;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.nav-underline:hover::after {
  width: 100%;
}

.nav-underline.active::after {
  width: 100%;
}
