I used Flexbox on my div but it still only centers horizontally and not vertically. I want it in the middle of the screen. Here is my code -:
 <!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Test</title>
    <style>
        .box{
            background-color: red;
            border: 2px solid black;
            width: 100px;
            height: 100px;
            }
        .container{
            display: flex;
            justify-content: center;
            align-items: center;
        }   
    </style>
</head>
<body>
    <div class="container">
        <div class="box">Box1</div>
    </div>
</body>
</html>
Here is my output -:
Any help would be great.
Thank You.

 
     
     
     
    