/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Feb 14, 2017, 8:17:01 PM
    Author     : ebelloma
*/

html,body {
    height: 100%;
    margin: 0px; padding: 0px;
    background: linear-gradient(#0B3821, white); background-repeat: no-repeat;
}

#seitz_container {
    font-family: Verdana;
}

#seitz_header {
    position: fixed; top: 0px; left: 0px; right: 0px; text-align: center;
}

#seitz_main {
    position: absolute; left: 0px; right: 0px; bottom: 0px;
    z-index: 100;
    overflow: auto;
}
#seitz_footer {
    
}

/* Large desktop */
/* @media (min-width: 1200px) {} */

/* Portrait tablet to landscape and desktop */
/*@media (min-width: 768px) and (max-width: 979px) {} */

/* Landscape phone to portrait tablet */
/* @media (max-width: 767px) {} */

/* Landscape phones and down */
/*@media (max-width: 480px) {}*/

@media all and (min-width: 768px) { /* LARGE */
    #seitz_header {
        height: 120px;
    }
    #seitz_main {
        top: 120px;
        font-size: 1.0em;
    }
}

@media all and (min-width: 481px) and (max-width: 767px) { /* SMALL */
    #seitz_header {
        height: 80px;
    }
    #seitz_main {
        top: 80px;
        font-size: .8em;
    }
}

@media (max-width: 480px) {
    #seitz_header {
        height: 80px;
    }
    #seitz_main {
        top: 80px;
        font-size: .7em;
    }
}