<!DOCTYPE html>
<html>
<head>
<title>CSS Center Paragraph with flex</title>
<style>
.center {
display: flex;
justify-content: center;
height: 250px;
border: 2px solid red;
text-align: center;
align-items: center;
}
.center p {
font-size:30px;
}
</style>
</head>
<body>
<div class="center">
<p>I am at the center of the box <br> what you think !</p>
</div>
</body>
</html>