I want do center my image horizontally and vertically but I just can center horizontally, at the same time I want this responsive,can anyone help me ? enter code here
.video{
width: 100%;
height: 500px;
background-color: peru;
position: absolute;
}
.moldura{
display: block;
width: 50px;
margin-right: auto;
margin-left: auto;
margin-top: auto;
margin-bottom: auto;
border: 1px solid black;
}
.moldura img{
width: 50px;
}
<!DOCTYPE html>
<html>
<head>
<title>TESTE</title>
<link rel="stylesheet" type="text/css" href="estilo.css">
</head>
<body>
<div class="video">
<div class="moldura">
<img src="https://lh4.ggpht.com/SKQHLsT8xsNpXeL5si4bBqSNqdy8Qbvzk15J3qWTp55AnnkbNO6-vBJhIBTQxyq16YE=w300">
</div>
</div>
</body>
</html>