
:root {
  --theme-supreme-primary: #CEA272;
  --theme-supreme-secondary: #b58a5e;
  --theme-supreme-dark: #AA825A;

  --mobile-header-height: 160px;
  --mobile-footer-height: 44px ;

  --header-height: 120px;
  --footer-height: 53px;
}

/* Custom font: Noto Sans CJK TC */
@font-face {
  font-family: "Noto Sans CJK TC";
  src: url("../font/Noto_Sans_TC/NotoSansTC-Medium.otf") format("opentype");
}

@font-face {
  font-family: "Noto Sans CJK TC Bold";
  src: url("../font/Noto_Sans_TC/NotoSansTC-Bold.otf") format("opentype");
}

@font-face {
  font-family: "Noto Sans CJK TC Black";
  src: url("../font/Noto_Sans_TC/NotoSansTC-Black.otf") format("opentype");
}

@font-face {
  font-family: "Noto Sans CJK TC Light";
  src: url("../font/Noto_Sans_TC/NotoSansTC-Light.otf") format("opentype");
}

@font-face {
  font-family: "Noto Sans CJK TC Regular";
  src: url("../font/Noto_Sans_TC/NotoSansTC-Regular.otf") format("opentype");
}

@font-face {
  font-family: "Noto Sans CJK TC Thin";
  src: url("../font/Noto_Sans_TC/NotoSansTC-Thin.otf") format("opentype");
}
/* Custom font: Noto Sans CJK TC */

/* Custom font: Outfit */
@font-face {
  font-family: "Outfit";
  src: url("../font/Outfit/Outfit-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Outfit Thin";
  src: url("../font/Outfit/Outfit-Thin.ttf") format("truetype");
}

@font-face {
  font-family: "Outfit Black";
  src: url("../font/Outfit/Outfit-Black.ttf") format("truetype");
}

@font-face {
  font-family: "Outfit Light";
  src: url("../font/Outfit/Outfit-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Outfit Regular";
  src: url("../font/Outfit/Outfit-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Outfit Thin";
  src: url("../font/Outfit/Outfit-Thin.ttf") format("truetype");
}

@font-face {
  font-family: "Outfit ExtraLight";
  src: url("../font/Outfit/Outfit-ExtraLight.ttf") format("truetype");
}

@font-face {
  font-family: "Outfit ExtraBold";
  src: url("../font/Outfit/Outfit-ExtraBold.ttf") format("truetype");
}

@font-face {
  font-family: "Outfit Bold";
  src: url("../font/Outfit/Outfit-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Outfit SemiBold";
  src: url("../font/Outfit/Outfit-SemiBold.ttf") format("truetype");
}
/* Custom font: Outfit */

body {
  background-color: #1b1b1a;
  color: #ffffff;
  font-family: "Noto Sans CJK TC";
  font-style: normal;

  display: flex;
  align-items: center;
  justify-content: center;


}

input{
  color:#000;
  -webkit-text-fill-color: #000;
}

::placeholder {
  color: light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
  -webkit-text-fill-color: light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans CJK TC";
  font-style: normal;
  color: var(--theme-supreme-primary);
}

/* h1 {
  font-weight: 400;
  font-size: 53.9px;
  line-height: 49px;
}

h3 {
  font-weight: 500;
  font-size: 22.4194px;
  line-height: 33px;
} */

ol {
  /* list-style: inside decimal; */
  /* padding-left: 0; */
  padding-left: 1em;
}

main{
  margin-bottom: calc(250px + 2%);
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
}


a {
  color: var(--theme-supreme-primary);
}

a:hover {
  color: var(--theme-supreme-secondary);
}

.outline-0{
  outline: 0;
}


@media (max-width: 767.98px) {
  body{
    background-color: #000000;
  }
  
  main{
    margin-bottom: calc(150px + 1%);
    min-height: calc(100vh - var(--mobile-header-height) - var(--mobile-footer-height));
  }
}
