.page-title
{
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 60px;
    margin-bottom: 60px;
    
}

.page-title h2
{
    font-size: 30px;
    color: var(--text-black-900);
    font-weight: 700;
    position: relative;
}

.page-title h2::before
{
    content: '';
    height: 4px;
    width: 50px;
    background-color: var(--skin-color);
    position: absolute;
    top: 100%;
    left: 0;
}

.page-title h2::after
{
    content: '';
    height: 4px;
    width: 25px;
    background-color: var(--skin-color);
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
}


.page .page-content
{
    flex: 0 0 100%;
    max-width: 100%;
}

.page .page-content .page-text
{
    flex: 0 0 100%;
    max-width: 100%;
}

.page .page-content .page-text h3
{
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-black-900);
}

.page .page-content .page-text .poem
{
    width: 55%;
    margin: 5px auto;
    padding: 5px 25px;
    
}

.page .page-content .page-text .poem p
{
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-black-900);
}

.page .page-content .page-text p
{
    font-size: 16px;
    line-height: 25px;
    color: var(--text-black-700);
    text-align: justify;
}

.page .page-content .page-text .poem-title
{
    
    margin-right: 20%;
    margin-bottom: 20px;
}

.page .page-content .page-text .poem-title p
{
    text-align: right;
    font-size: 17px;
    font-weight: 600;
}

.page .page-content .page-text .notice p
{
   text-align: center;
   font-size: 15px;
   padding-bottom: 10px;
}



/********** Responsive **********/
@media (max-width:500px)
{
    .page-title
    {
        margin-top: 100px;
        margin-bottom: 60px;
        
    }

    .page-title h2
    {
        font-size: 20px;
        color: var(--text-black-900);
        font-weight: 700;
        position: relative;
    }

    .page .page-content .page-text h3
{
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-black-900);
}

    .page .page-content .page-text .poem
    {
        width: 100%;
        
    }

    .page .page-content .page-text .poem p
    {
        font-size: 16px;
        font-weight: 500;
    }
}