body {
    -webkit-touch-callout: none;
    /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;
    /* prevent webkit from resizing text to fit */
    -webkit-user-select: none;
    /* prevent copy paste, to allow, change 'none' to 'text' */
    background-color: #E4E4E4;
    background-image: linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
    background-image: -webkit-linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
    background-image: -ms-linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
    background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, #A7A7A7), color-stop(0.51, #E4E4E4));
    background-attachment: fixed;
    font-family: 'HelveticaNeue-Light', 'HelveticaNeue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    height: 800px;
    margin: 0px;
    padding: 0px;
    .text-transform: uppercase;
    width: 100%;
}
#padre {
	position: relative;
	width: 400px;
	height:800px;
	.border: 1px solid black;
	margin: 0 auto;
	text-align: center;
}
#hijo {
	.position: absolute;
	.border: 1px solid yellow;
	.top: 100px;
	bottom: 0;
	.left: 40%;
	.right: 50%;
	.width: 50%;
	.height: 50%;
	margin: 0 auto;
}
img {
	.margin-top: 200px;
}