﻿#page {
    float: left;
    clear: both;
    box-sizing: border-box;
    padding: 0 0 0 0;
    border: 0px none;
    width: 100%;
}

#content {
    float: left;
    clear: both;
    box-sizing: border-box;
    padding: 10px 10px 40px 10px;
    border: 0px none;
    width: 100%;
}

#content > div:nth-of-type(1) {
    float: left;
    clear: both;
    box-sizing: border-box;
    padding: 24px 0 0 0;
    border: 0px none;
    width: 100%;
    justify-content: center; 
    align-content: center; 
    text-align: center;
}
#content > div:nth-of-type(1) > h1 { color: #333333; }
#content > div:nth-of-type(2) {
    float: left;
    clear: both;
    box-sizing: border-box;
    padding: 24px 0 24px 0;
    border: 0px none;
    width: 100%; 
    display: flex; 
    flex-direction: column; 
    flex-flow: column; 
    justify-content: center; 
    align-content: center; 
    text-align: center;
}
#content > div:nth-of-type(2) > h3 { color: red; }

#content > div:nth-of-type(3) {
    float: left;
    clear: both;
    box-sizing: border-box;
    padding: 24px 0 24px 0;
    border: 0px none;
    width: 100%; 
    display: flex; 
    flex-direction: column; 
    flex-flow: column; 
    justify-content: center; 
    align-content: center; 
    text-align: center;
}
#content > div:nth-of-type(3) > h3 { color: #444444; }






/* Phones / Mobiles */
@media all and (min-width: 1px) 
{

}

@media all and (min-width: 480px) 
{

}

@media all and (min-width: 640px) 
{

}

/* Tablet / Netbook */
@media all and (min-width: 768px) 
{
    
    
}

/* Desktop */
@media all and (min-width: 1024px) 
{
    
}