Is there a way to align elements in the center of the screen both vertically and horizontally without specifying width and height for mobile and desktop views? How can I make it responsive so that it appears centered on all devices?
.parent-container{
display: inline-flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100vw;
height: 100vh;
}
<div class="parent-container">
<button>
</button>
<button>
</button>
<button>
</button>
</div>