html, body
{
    height: 100%;
    margin:0;
    padding:0;
	background-color: #f0f0f0;
	font-family: Arial;
}

div {
    position:relative;
    height: 100%;
    width:100%;
	z-index: 1;
}

div img {
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin:auto;
    max-width: 30%;
    max-height: 30%;
}

article {
    position: absolute;
	font-size: 1vw;
    left: 2vw;
    top: 2vh;
	z-index: 2;
}

h1 {
	margin-bottom: 0;
}

a {
	color: #444;
}

.ns {
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
}

@media only screen and (min-width: 691px) and (max-width: 1200px)  {
    div img {
        max-width: 70%;
        max-height: 70%;
	}
}

@media only screen and (max-width: 690px)  {
    div img {
        max-width: 100%;
        max-height: 100%;
	}
}