Given the following HTML and CSS, what will be the result of applying the CSS?
HTML:
<div class="container">
<p class="text">Text</p>
</div>
CSS:
.container {
display: grid;
grid-template-columns: 1fr 2fr;
grid-template-rows: 1fr 2fr;
}
.text {
grid-column: 2;
grid-row: 1 / 3;
}