<style>
.container{
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
justify-content: center;
align-items: center;
}
.a{
width: calc(100% - 20px);
height: calc(50vw - 10px);
font-size: 20px;
background-color: red;
display: flex;
justify-content: center;
align-items: center;
}
</style>```
A