html {

}

body {
    background-color: black;
    color: white;
    font-family: sans-serif;
    font-size: 1em;
}

div {

}

a {
    color: #FBFFCD;
}

a:hover {
    color: #DBDFAD;
}

div.locations {
    margin: 5px auto;
}

div.location {
    display: inline-block;
    margin: 0px 10px;
}

body > div.logo {
    width: 900px;
    height: 700px;
    margin: 10px auto 5px auto;
    background-image: url("/images/logo/900");
    background-position: center;
    background-repeat: no-repeat;
}

body > div.content {
   text-align: center;
}

div.instagram {
    margin: 20px;
}

div.press {
    margin: 20px;
    padding: 10px;
    border: 1px solid #FBFFCD;
}

div.press p {
    text-align: left;
    font-family: "Times New Roman", Times, serif;
}

div.press h3 {
    margin-bottom: 0px;
}

div.press h6 {
    margin: 3px;
}

@media all and (min-width: 1024px) and (max-width: 1280px) {
    body > div.logo {
        width: 650px;
        height: 600px;
        background-image: url("/images/logo/800");
    }
}

@media all and (min-width: 768px) and (max-width: 1024px) {
    body > div.logo {
        width: 350px;
        height: 330px;
        background-image: url("/images/logo/450");
    }
}

@media all and (min-width: 480px) and (max-width: 768px) {
    body > div.logo {
        width: 270px;
        height: 260px;
        background-image: url("/images/logo/350");
    }
}

@media all and (max-width: 480px) {
    body > div.logo {
        width: 250px;
        height: 240px;
        background-image: url("/images/logo/300");
    }
}


/* Portrait */
@media screen and (orientation:portrait) {
}
/* Landscape */
@media screen and (orientation:landscape) {
}


/* CSS for iPhone, iPad, and Retina Displays */

/* Non-Retina */
@media screen and (-webkit-max-device-pixel-ratio: 1) {
}

/* Retina */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
}

/* iPhone Portrait */
@media screen and (max-device-width: 480px) and (orientation:portrait) {
} 

/* iPhone Landscape */
@media screen and (max-device-width: 480px) and (orientation:landscape) {
}

/* iPad Portrait */
@media screen and (min-device-width: 481px) and (orientation:portrait) {
}

/* iPad Landscape */
@media screen and (min-device-width: 481px) and (orientation:landscape) {
}
