.body-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex: 1;
    width: 90%;
    gap: clamp(48px, 10vw, 70vw);
    align-items: center;
    justify-content: center;
    padding: 5vh 1vw;
}

.cover-part{
    text-align: center;
    
}

.img-word{
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 24px;
    color: #c9543b;
    letter-spacing: 0.06em;
    transform: rotate(-1.5deg);
}

.img-meta{
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 13px;
    letter-spacing: 0.3em;
    color: #9a8f7d;
}

.img-body{
    display: inline-block;
    position: relative;
    margin: 25px 0 0 0;
    animation: img-body-animation 6s ease-in-out infinite;
}

.img-tap{
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    width: 130px;
    height: 32px;
    background: rgba(201, 84, 59, 0.16);
    border: 1px dashed rgba(201, 84, 59, 0.45);
    z-index: 2;
}

.img-cover{
    display: block;
    width: 262px;
    height: auto;
    border: 6px solid #fdfbf4;
    box-shadow: 9px 11px 0 rgba(74, 60, 40, 0.12), 0 0 0 1px #e3d8c0;
}

@keyframes img-body-animation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.button-part{
    display: grid;
    gap: 10px;
    text-align: center;
}

.title{
    font-family: 'Noto Serif SC', serif;
    font-weight: 900;
    font-size: 50px;
    letter-spacing: 0.02em;
    line-height: 1.12
}

.title-en{
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.42em;
    color: #a89c86;
}

.subtitle{
    font-family: 'Zhi Mang Xing', cursive;
    font-size: 27px;
    color: #5a5040;
    transform: rotate(-1deg);
}

.introduction{
    max-width: 440px;
    margin: 0 auto;
    font-family: 'Noto Serif SC', serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.95;
    color: #6b6252;
    text-wrap: pretty;
}

.download-button-container{
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.download-button{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #c9543b;
    color: #fdf2ee;
    text-decoration: none;
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 700;
    font-size: 18px;
    padding: 17px 42px;
    border-radius: 40px;
    box-shadow: 5px 6px 0 rgba(44, 38, 32, 0.18);
}

.file-information{
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 13px;
    color: #9a8f7d;
    margin-top: 16px;
    letter-spacing: 0.04em;
}

.notice{
    font-size: 14px;
    line-height: 1.85;
    color: #8a7f6c;
}