body{
    background:#fff;
}
#page{
    width:100%;
    overflow-x:hidden;
    overflow-y:auto;
    min-height: 100vh;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}
.title{
    width:1280px;
    max-width:100%;
    margin:0 auto;

}
.title img{
    width:100%;
}
.info{
    text-align: center;
}
.imglist{
    width:1030px;
    max-width:calc(100vw - 40px);
    margin: 0 auto 30px;
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    justify-content: space-between;
    border-radius: 8px;
    overflow:hidden;


}
.imglist>div{
    width:33.3%;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 33.3%;
}
.imglist>div img{
    width:100%;
    height:100%
}
h1{
    font-size:78px;
    font-style:italic;
    margin-bottom:50px;
}
h2{
    font-size:40px;
    margin-bottom:26px;
}
h3{
    font-size:28px;
}

@media screen and (max-width:768px) {
    .imglist{
        width:330px;
        max-width:calc(100vw - 40px);
        margin: 0 auto 30px;
        display: flex;
        flex-flow: column nowrap;
        align-items: stretch;
        justify-content: flex-start;
        border-radius: 8px;
        overflow:hidden;


    }
    .imglist>div{
        width:100%;
        overflow: hidden;
    }
    h1{
        font-size:60px;
        font-style:italic;
        margin-bottom:40px;
    }
    h2{
        font-size:28px;
        margin-bottom:16px;
    }
    h3{
        font-size:20px;
        margin-bottom:30px;

    }


}
@media screen and (max-width:520px) {
    .imglist{
        margin-bottom:30px;
    }
    h1{
        font-size:40px;
        font-style:italic;
        margin-bottom:30px;
    }
    h2{
        font-size:24px;
        margin-bottom:14px;
    }
    h3{
        font-size:16px;
        margin-bottom:30px;

    }
}

