How can I center an image vertically an horizontally in my html page ? The image should kept in center irrespective of the size of the screen changes .I tried something like below ,but it is not centering the image vertically.
<body>
<img src="img/blogg.PNG" height="20%" width="20%" style="display: flex;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
justify-content: center;
position: relative;
padding-top: 15%;
margin: auto;
align-items: center;
" />
</body>