* {
  margin: 0;
  padding: 0;
  font-family: var(--font-base);
  font-size: var(--size-base);
  list-style: none;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: "pretendard";
  font-weight: 400;
  font-size: 19px;
  color: #333;
}

button,
a {
  font-family: "pretendard";
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
  color: var(--color-base);
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

a:hover {
  font-weight: bold;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.hide {
  text-indent: -99999px;
  font-size: 0;
  height: 0;
}

i {
  display: flex !important;
  align-items: center;
}
i span.txt {
  font-family: var(--font-base);
}

@media screen and (max-width: 768px) {
  button,
  a {
    font-size: 15px;
  }
}