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


/************Portrait Image Pages***********************************************/
body {
    padding: 0px;
    margin: 0px;
    background-color: rgb(60,60,60);
    text-align: center;
    padding-top: 10px;
    width: 100%;
}

#image-wrapper {
    margin-left: auto;
    margin-right: auto;
}

#image-wrapper, img {
    max-height: 1000px;
    height: 95vh;
    width: 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-height: 800px) { /*This is HEIGHT!!!*/
    #image-wrapper, img {
        height: 99vh;
    }

    body {
        padding-top: 0px;
    }
}

@media only screen and (max-width: 800px) {
    #image-wrapper, img {
        width: 95%;
        height: auto;
    }

    body {
        padding-top: 0px;
    }
}

@media only screen and (max-width: 680px) {
    #image-wrapper, img {
        width: 100%;
    }
}
