
/*--------------------------------------  BASIC STYLE  */
html{
	-webkit-text-size-adjust: 100%;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;;
}

body{
    font-family: 'Roboto', sans-serif;
    width: 100%;
}

a,
a:visited,
a:active {
	font-size: 15px;
	font-weight: 400;
    text-decoration: none;
    color: #999999;
}
a:hover {
    color: #ED1C24;
    text-decoration: underline;
}

h1,h2,h3,h4,h5{font-family: 'Merriweather', serif;line-height: 1.5em;}

section{
    margin: 0px auto;
}

.container{
    width: 100%;
	max-width: 680px;
	display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 0px 0px 0px;
}

.container .wrapper{
	width: 100%;
	font-size: 16px;
	font-weight: 100;
}

.container .wrapper .grahpicArt{
	width: 100%;
	max-width: 680px;
}

.container .wrapper .credit{
	font-size: 10px;
	font-weight: 100;
	line-height: 1.0em;
	text-align: right;
}


.device{display: none;}


/*  MEDIA QUERIES  */
@media (max-width: 425px) {
	.desktop {
        display: none !important;
    }
    .device {
        display: block !important;
    }
}





