@font-face {
  font-family: 'Noto Sans';
  src: url("./fonts/NotoSans-Regular.woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Noto Sans';
  src: url("./fonts/NotoSans-Italic.woff2");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Noto Sans';
  src: url("./fonts/NotoSans-Bold.woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Noto Sans';
  src: url("./fonts/NotoSans-BoldItalic.woff2");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Noto Sans KR';
  src: url("./fonts/NotoSansKR-Regular.woff2");
  font-weight: 400;
}

@font-face {
  font-family: 'Noto Sans KR';
  src: url("./fonts/NotoSansKR-Bold.woff2");
  font-weight: 700;
}

@font-face {
  font-family: 'Plangothic P1';
  src: url("./fonts/PlangothicP1-Regular.woff2");
  font-weight: 400;
}

@font-face {
  font-family: 'Plangothic P2';
  src: url("./fonts/PlangothicP2-Regular.woff2");
  font-weight: 400;
}

::selection{
  background-color: #000000;
  color: #ffffff;
}

body{
  margin: 0;
  font-family: 'Noto Sans', 'Noto Sans KR', 'Plangothic P1', 'Plangothic P2';
  font-size: 16px;
  background-color: #ffffff;
  color: #000000;
}

#navBox{
  position: fixed;
  top: 0;
  left: 0;
  box-sizing: border-box;
  display: flex;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
  background-color: #ffffff;
}

#wikiname{
  color: inherit;
}

#navBack{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#searchInput{
  display: flex;
  width: 175px;
  height: 30px;
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background-color: inherit;
  color: inherit;
}

#searchButton{
  width: 24px;
  height: 24px;
  mask: url("/static/icons/search.svg") center / contain no-repeat;
  -webkit-mask: url("/static/icons/search.svg") center / contain no-repeat;
  background-color: #000000;
}

#loginButton{
  width: 24px;
  height: 24px;
  mask: url("/static/icons/login.svg") center / contain no-repeat;
  -webkit-mask: url("/static/icons/login.svg") center / contain no-repeat;
  background-color: #000000;
}

#resultList{
  position: fixed;
  top: 50px;
  right: 0;
  width: max-content;
  text-align: right;
  background-color: #FFFFFF50;
  backdrop-filter: blur(5px);
}

.resultItem{
  display: block;
  padding: 5px 15px;
  color: inherit;
}

#contentBox{
  margin: 50px auto 0;
  width: 90%;
}

.functionItem{
  color: inherit;
}

.badge{
  display: inline-block;
  margin: 0 0.2em;
  padding: 0.1em;
  border: 1px solid #000000;
  line-height: 1;
}

a{
  color: #1E78FF;
  text-decoration: none;
}