html, body {
	background: #ba9c54;
	margin: 0;
}

a {
	color: #222;
    text-decoration: none;
}

a:hover,
a:active {
	color: #666666;
}

.parent-div {
    display: flex;
    justify-content: center;
    align-items: center;
}
.sd-div {
    position: fixed;
	top: 50%;
	left: 50%;
    transform: translate(-50%, -50%);
}
.sd-div img {
    width: 100%;
}


/** RESPONSIVE **/


@media (max-width: 900px) {

    .sd-div {
        position: fixed;
        top: 50%;
        left: 20%;
        transform: translate(-12.5%, -50%);
    }

}
