CSS 上下中央の簡単な方法があった!
<!DOCTYPE html>
<html lang="ja">
<head>
<title></title>
<style>
.blackbox {
width:100vw;
height:50vw;
background-color:black;
color:white;
display:flex;
align-items:center;
justify-content:center;
}
</style>
</head>
<body>
<div class="blackbox">上下中央</div>
</body>
</html>