@import url('https://event.travel.com.tw/header2019/css/headerStyle.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900');
@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:ital,wght@0,100..900;1,100..900&family=Noto+Serif+TC:wght@200..900&family=Oswald:wght@200..700&display=swap');

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

body {
  position: relative;
  display: flex;
  flex-direction: column;
  /* gap: clamp(1rem, 3vw, 3rem); */
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: scroll;
  width: 100dvw;
  height: auto;
  z-index: -10;
  font-family: 'Noto Sans TC', sans-serif;
}

.hidden {
  display: none;
}

.list-none {
  list-style-type: none;
}

.section-container {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1200px;
  width: auto;

  &:first-child {
    margin-top: 2rem;
  }

  &:last-child {
    margin-bottom: 2rem;
  }

  @media screen and (max-width: 1280px) {
    /* padding: 0 2.5rem; */
  }
  @media screen and (max-width: 768px) {
    /* padding: 0 1.5rem; */
  }
}

.section-container h2,
h3,
h4,
h5,
p {
  margin: 0;
  padding: 0;
}

.only-display-mobile {
  @media screen and (min-width: 769px) {
    display: none !important;
  }
}

.only-display-desktop {
  @media screen and (max-width: 768px) {
    display: none !important;
  }
}

#share {
  position: fixed;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 12px;
  border-radius: 12px;
  margin: 12px;
  opacity: 0.5;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#share:hover {
  opacity: 1;
}

#share a {
  color: #333;
  font-size: 13pt;
}

#share i.fa-facebook,
#share i.fa-line {
  font-size: 20pt;
  color: #193479;
}

#share i.fa-line {
  color: #090;
}

#share i.fa-solid {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  padding-top: 6px;
  border-top: 1px black solid;
  width: 150%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#foot {
  text-align: center;
  padding: 16px;
  background: rgb(210, 242, 255);
  color: #777;
}

@media (max-width: 768px) {
  #foot {
    padding-bottom: 50px;
  }
}
