/* content --------------------------------------------------------------------------------- */
.content{
    padding: 70px 0;
    box-sizing: border-box;
}

.content h1,
.content h2,
.content h3,
.content h5 {
    text-align: center;
    line-height: 1em;
}

.content h1 {
    font-size: 36px;
    font-weight: bold;
}

.content h2 {
    font-size: 32px;
}

.content h3 {
    font-size: 30px;
}

.content h5 {
    font-size: 16px;
    margin-top: 18px;
    color: #666666;
}


@media (max-width: 950px) {
    .content{
        padding: 40px 0;
    }

    .content h2 {
        font-size: 24px;
    }

    .content h3 {
        font-size: 20px;
    }

    .content h5 {
        margin-top: 10px;
        font-size: 12px;
    }
}

/* info --------------------------------------------------------------------------------- */
#info .website {
    color: #666666;
    display: block;
    margin-top: 18px;
    font-size: 18px;
    text-align: center;
}

#info  .website a.web-link {
    color: #0099ff;
    text-decoration: underline;
}

#info .desc{
    max-width: 1000px;
    margin: 40px auto 0 auto;
    color: #888888;
    font-size: 16px;
    line-height: 26px;
}

#info .desc p {
    text-indent: 2em;
    margin-bottom: 10px;
    text-align: justify;
}

#info .desc p span,
#info .desc p b{
    color: #0099ff;
}

#info .desc p a{
    color: #0099ff;
    text-decoration: underline;
}

#info .pic-show{
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto 0 auto;
}


#info .pic-show .pic-content {
    border: 6px #dddddd solid;
    border-radius: 10px;
    overflow: hidden;
}

#info .pic-show .pic-content>img {
    width: 100%;
    max-height: 390px;
}


@media (max-width: 950px) {
    #info .desc{
        max-width: 92%;
        margin: 20px auto 0 auto;
        font-size: 14px;
        line-height: 20px;
    }

    #info .pic-show{
        flex-flow: column;
        gap: 10px;
        max-width: 92%;
        margin: 20px auto 0 auto;
    }

    #info .pic-show .pic-content>img {
        max-width: 100%;
    }
}

