#pictureoftheday_container
{
    width : 100%;

    margin : 0;
    padding : 0;
    margin-top : 15px;
    margin-bottom : 15px;
    display : flex;
    align-items : center;
    justify-content : center;
}

#pictureoftheday_main
{
    width : calc(95% - 2px);

    margin : 0;
    padding : 0;
    display : flex;
    align-items : flex-start;
    justify-content : center;
    flex-direction: column;

    background-color : rgba(255, 255, 255, 0.01);
}

#pictureoftheday_title
{
    width : 100%;

    margin : 0;
    padding : 0;
    display : flex;
    align-items : center;
    justify-content : center;
}

#pictureoftheday_title h2
{
    width: calc(100% - 20px);
    font-family: 'Abel';
    font-size: 2em;
    margin : 0;
    padding : 0;
    border-bottom: 2px solid #009fc8;
    border-bottom-style: ridge;
    margin-bottom : 20px;
    padding-bottom: 20px;
    padding-left : 20px;
    padding-top : 15px;
}

#pictureoftheday_contents
{
    width : 100%;

    margin : 0;
    padding : 0;
    display : flex;
    align-items : flex-start;
    justify-content : center;
    margin-bottom : 10px;
}

#pictureoftheday_left, #pictureoftheday_right
{
    margin : 0;
    padding : 0;
    display : flex;
    align-items : center;
    justify-content : center;
    flex-direction: column;
}

#pictureoftheday_left
{
    width : calc(50% - 10px);
    margin-right : 10px;
    margin-left : 10px;
}

#pictureoftheday_right
{
    width : calc(50% - 10px);
    margin-left : 10px;
    margin-right : 10px;
}

#pictureoftheday_left img
{
    width : 80%;
    height : auto;
}

#pictureoftheday_right h3
{
    width : 90%;
    font-family: 'Abel';
    text-align: center;
    color : whitesmoke;
}

#pictureoftheday_right p
{
    width : 90%;
    color : whitesmoke;
    text-align: justify;
    font-family: 'Open Sans';
}