lion No, you'd need to define this using something like the below
.Hero .container {
padding-top: 40px;
padding-bottom: 30px;
}
I control mine using padding, but you could define a height here also. In essence, if you wanted to set a height, and use the padding to control the whitespace, then you could use
.Hero .container {
padding-top: 40px;
padding-bottom: 30px;
height: 300px;
min-height: 300px
}
The min-height line just guarantees that this is the absolute smallest size the DIV container can be in terms of overall height. Not compulsory at all, but a DIV expanding with text can look ugly if it's not expected.