.containers {
display: grid;
grid-template-columns: repeat(12, 1fr);
grid-template-rows: 10rem auto 10rem 10rem;
}
.top-section {
background: #9575cd;
grid-column: 1/-1;
display: flex;
align-items: center;
justify-content: space-between;
}
<div class="containers">
<section class="top-section">
<h1>Zodiac Signs</h1>
</section>
</div>
Here is a screenshot from Chrome tools
My issue is that after implementing the codes above, my website appears to have an unresponsive design despite using grid styling. I'm not sure where I'm going wrong.