@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Noto Sans TC", sans-serif;
}

h1, h2, h3, h4, h5 {
  font-weight: normal;
}

header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 5;
  background-color: white;
  box-shadow: 3px 3px 5px 5px rgb(109, 108, 108);
}
header div.logo {
  display: flex;
  align-items: center;
  flex: 5 1 400px;
  margin-left: 2rem;
}
header div.logo img {
  width: 6vw;
  height: 6vw;
}
header nav {
  flex: 2 1 400px;
}
header nav ul {
  list-style-type: none;
  display: flex;
  justify-content: space-around;
}
header nav ul li a {
  color: #862617;
  text-decoration: none;
  font-size: 1.35rem;
}

main section.backImage {
  min-height: 90vh;
  width: 100%;
  background-image: url(../img/Pictures/pexels-jasmine-xie-10836079.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
main section.backImage h3 {
  font-size: 2.5rem;
  color: azure;
  margin: 3rem 2rem;
}
main section.backImage button {
  background-color: #862617;
  padding: 0.75rem;
  font-size: 1.5rem;
  color: azure;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
}
main section.backImage div.filter {
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  min-height: 90vh;
  position: absolute;
  top: 0;
  z-index: -1;
}

section.second {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
}
section.second h2 {
  font-size: 2rem;
  margin: 2rem 0rem;
}
section.second section.cards {
  display: flex;
  width: 80%;
  min-height: 80vh;
}
section.second section.cards div.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 1rem;
  flex: 1 1 300px;
}
section.second section.cards div.card div.image-container {
  overflow: hidden;
  width: 15vw;
  height: 15vw;
  border-radius: 50%;
}
section.second section.cards div.card div.image-container img {
  margin: 1rem 0rem;
  width: 15vw;
  height: 15vw;
  border-radius: 50%;
  transition: all 0.2s;
}
section.second section.cards div.card div.image-container img:hover {
  transform: scale(1.2);
}
section.second section.cards div.card h4 {
  font-size: 2rem;
  margin: 1rem 0rem;
}
section.second section.cards div.card p {
  font-size: 1.25rem;
}
section.second section.cards div.card a {
  text-decoration: none;
  padding: 1.5rem;
  background-color: #862617;
  color: azure;
  font-size: 1.25rem;
  border-radius: 10%;
}

footer {
  padding: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #E4E4E4;
  justify-content: space-around;
}
footer div.logo {
  display: flex;
  align-items: center;
}
footer div.logo img {
  width: 5vw;
  height: 5vw;
}
footer nav {
  width: 30%;
}
footer nav ul {
  display: flex;
  list-style: none;
  width: 100%;
  justify-content: space-around;
  flex-wrap: wrap;
}
footer nav ul li {
  flex-basis: 50px;
}
footer nav ul li a {
  color: #862617;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 600;
}
footer section.link a {
  margin: 0rem 1rem;
}
footer section.link a img {
  width: 4vw;
  height: 4vw;
}

@media screen and (max-width: 700px) {
  main section.second section.cards div.card img {
    width: 40vw;
    height: 40vw;
  }
}
/*scrolbar setting*/
/* width */
::-webkit-scrollbar {
  width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #f26b1f;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: red;
  border-radius: 10px;
}

@media screen and (max-width: 550px) {
  div.logo {
    margin-left: 0.5rem;
  }
  div.logo img {
    width: 10vw;
    height: 10vw;
  }
}
/*footer  自己演練*//*# sourceMappingURL=style.css.map */