@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@300;600;700;800;900&display=swap");
* {
  box-sizing: border-box;
}

body {
  font-family: "Heebo", sans-serif;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eeeeee;
}
body img {
  max-width: 100%;
}
body .card {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  width: 350px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}
body .card .card-header {
  height: 200px;
}
body .card .card-header img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
body .card .card-content {
  background-color: #fff;
  padding: 30px;
}
body .card .card-content .card-title {
  height: 20px;
  margin: 0;
}
body .card .card-content .card-text {
  color: #777;
  margin: 10px 0 20px;
}
body .card .card-content .card-author {
  display: flex;
}
body .card .card-content .card-author .small-img {
  border-radius: 50%;
  overflow: hidden;
  height: 40px;
  width: 40px;
}
body .card .card-content .card-author .card-info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-left: 10px;
  width: 100px;
}
body .card .card-content .card-author .card-info small {
  color: #aaa;
}

/*---- 動畫效果 ----*/
.animated-bg {
  background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 10%, #f6f7f8 20%, #f6f7f8 100%);
  background-size: 200% 100%;
  animation: bgPos 1s linear infinite;
}

.animated-text {
  border-radius: 50px;
  display: inline-block;
  margin: 0;
  height: 10px;
  width: 100%;
}

@keyframes bgPos {
  0% {
    background-position: 50% 0;
  }
  100% {
    background-position: -150% 0;
  }
}/*# sourceMappingURL=content.css.map */