/* Webfont: CenturyStd-LightCondensed */

@font-face {
    font-family: 'ITCCenturyStdLightCond';
    src: url('../fonts/CenturyStd-LightCondensed.eot'); /* IE9 Compat Modes */
    src: url('../fonts/CenturyStd-LightCondensed.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/CenturyStd-LightCondensed.woff') format('woff'), /* Modern Browsers */
         url('../fonts/CenturyStd-LightCondensed.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/CenturyStd-LightCondensed.svg#CenturyStd-LightCondensed') format('svg'); /* Legacy iOS */
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}

html {
    color: black;
    box-sizing: border-box;
}

body {
    font-family: 'ITCCenturyStdLightCond', serif;
    line-height:  1.15;
    letter-spacing: .08em;
    -webkit-font-smoothing:  antialiased !important;
    -moz-osx-font-smoothing:  grayscale !important;
}

* {
    font:  inherit;
    font-weight: normal;
    box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

a, a:link, a:hover, a:visited {
    color:  inherit;
    text-decoration: none;
}

em {
    font-style: italic;
}

.container {
    transition: .25s font-size, .25s padding;
    padding:  20px;
    font-size: 18px;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.container > * {
    width: 100%;
}

.logo {
    font-size: 1.33em;
    text-align: center;
    letter-spacing: 0.15em;
}

.info {
    letter-spacing: .08em;
    text-align: center;
}

.contact {
    font-size: 1.33em;
    letter-spacing: .08em;
}

.contact p:last-child {
    text-align: right;
}

a[href^='mailto:'] span {
    display: block;
}



/* ==========================================================================
   Media Queries
   ========================================================================== */

@media only screen and (min-width: 360px) {

/* ====================
    LARGE PHONE
   ==================== */

   .contact {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
}

@media only screen and (min-width: 440px) {

/* ====================
    INTERMEDIATE
   ==================== */

    .container {
        padding:  30px;
        font-size: 21px;
    }
}

@media only screen and (min-width: 768px) {

/* ====================
    WIDE
   ==================== */

   .container {
        padding:  40px;
        font-size: 28px;
    }
}

@media only screen and (min-width: 1024px) {

    /* ====================
        LARGE
       ==================== */
    
    .container {
        padding:  50px;
        font-size: 31px;
    }
}

@media only screen and (min-width: 1280px) {

    /* ====================
        LARGE
       ==================== */
    
    .container {
    	padding-top: 60px;
    	padding-right: 90px;
    	padding-bottom: 60px;
    	padding-left: 90px;
    }
}
