.body {
    font-family: 'Noto Sans TC', sans-serif;
    margin: 0;
    padding: 0;
  }


  .bg-img-top{
    background-image: url("../backImg/background04.png");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 45%;
    padding-top: 80px;
    
    }
  
  .bg-img{
  background-image: url("../backImg/background03.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 45%;

  }

  @media (min-width: 768px) {
    
    .bg-img-top{
        background-size: 45%;
        }
     
       
      .bg-img{
      background-size: 45%;
      }
  }
  
  .card-title{
  font-size: 2.2em;
  text-align: center;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-top: 70px;
  margin-bottom: 0px !important;
  }
  
  .card-title::after{
    content: '';
    display: block;
    width: 150px;
    height: 4px;
    background-color: #ffbf00; 
    margin: 20px auto ; 
    border-radius: 2px;
}
  
  .card-body{
    margin: -20px 90px 0 90px;
    letter-spacing: 1.5px;
  }
  @media (max-width: 768px) {
    .card-body {
      margin: -30px 35px 0 35px;
    }
    .card-title{
      margin: 50px;
      font-size: 1.6em;
      margin-bottom:50px;
      letter-spacing: 1.8px;
    }
    .card-text h5{
      font-size: 4.2vw ;
    }
    .carousel{
      padding-left:10px;
      padding-right: 10px;
  }
  }

  .date{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: small;
    color: gray;
  }

  .btn {
    position: relative;
    color: #111111;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 12px 20px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 28px;
    background: #ffda69;
    width: 56px;
    height: 56px;
    transition: all 0.3s ease;
}
.btn span {
    position: relative;
    z-index: 1;
}
.btn svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #111111;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}
.btn:hover:before {
    width: 100%;
    background: #5ad4d2;
}
.btn:hover svg {
    transform: translateX(0);
}
.btn:hover,
.btn:focus {
    color: #111111;
}
.btn:active {
    color: #111111;
    transform: scale(0.96);
}

.botton{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.carousel {
  margin: 45px 15px 0 15px; 
  max-width: calc(100% - 30px); 
}

.carousel-inner {
  /* aspect-ratio: 4/3;  */
  overflow: hidden;
  border-radius: 8px; 
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 保持圖片比例並填滿容器 */
}

@media (min-width: 769px) {
  .carousel {
      max-width:800px; 
      margin: 50px auto -20px auto;
  }
  .carousel-inner {
    aspect-ratio: 16/9; }
  
}

.btn span {
  font-size: small;
}
a:link {
    color: black;
    text-decoration: none;
  }
  
  a:visited {
    color:rgb(223, 145, 0); 
    ;
  }
  
  a:hover {
    color: blue;
    text-decoration: underline;
  }


  