CSS - Padding Problem

HTML

<div id="outer">
     <p>
     hello</p>
    
</div>

CSS

#outer {
    width:100px;
    height:100px;
    border:red 1px solid;
    padding:20px;
    
}