@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
@import url("https://use.typekit.net/cdj6azl.css");


/************Landscape Image Pages************************************************/
body {
    padding: 0px;
    margin: 0px;
    background-color: rgb(60,60,60);
    text-align: center;
    padding-top: 30px;
}

.image-wrapper {
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

img {
    max-width: 100%;
    height: auto;
}

.close-btn {
    display: block;
    position: fixed;
    width: 40px;
    height: 40px;
    background-image: url(../images/close-icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-color: rgba(60,60,60,0.7);
    border-radius: 3px;
    left: 7px;
    top: 7px;
}

@media only screen and (max-width: 1050px) { /*Should match with .image-wrapper max-width*/
    body {
        padding-top: 0px;
    }
}

@media only screen and (max-height: 800px) {
    body {
        padding-top: 0px;
    }
}


