<style>
div{
position: relative;
width: 500px;
height: 500px;
background-color: green;
}
p{
position: absolute;
top: 50%;
left: 50%;
width: 200px;
height: 200px;
background-color: hotpink;
transform: translate(-50%,-50%);
}
</style>
<body>
<div>
<p></p>
</div>
</body>