One of the main issues was within your media query - you failed to specify a specific element for the property application.
Below is the crucial part of the CSS modifications I made:
@media screen and (max-width: 768px) {
.services-container {
grid-template-columns: 1fr;
grid-template-rows: 1fr;
}
.cell-1, .cell-2, .cell-3, .cell-4, .cell-5, .cell-6 {
grid-column: auto;
grid-row: auto;
}
}
In addition, I reset all instances of your .cell
to have their placement set to auto
.
/* color variables */
:root {
--highlight-color: #ff7264;
--white-color: #fff;
--text-color: #7f7f7f;
--dark-bg-color: #2e2e2e;
--light-bg-color: #fff;
--gray-bg-color: #666;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* services section styles */
.services-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
grid-template-rows: repeat(3, 200px);
grid-gap: 5px;
margin: 5px;
}
.cell {
background: var(--highlight-color);
text-align: center;
color: var(--white-color);
padding-top: 10px;
}
.cell h3 {
font-size: 20px;
}
.cell p {
line-height: 1.4em;
}
/* Additional styling rules omitted for brevity */
<section id="services-section">
<h2 class="services-title">Services</h2>
<div class="services-container">
<div class="cell cell-1">
<h3>Creative Web Design Services</h3>
<p>Our web design services will greatly enhance your business’s presence on the Internet. Our designers mix a potent combination of brand strategy with a generous splash of creative juices and blend in the latest trends in Website UX and UI design.
Since 2019, S&E has designed and built over 25 Websites from e-commerce, b2c, b2b, non-profit, to social networks. We even create custom web applications.</p>
</div>
<div class="cell cell-2">
<h3>Digital Marketing</h3>
<p>Our digital marketing services are driven not only by passion, but also a driving desire to deliver exceptional sales conversions.</p>
</div>
/* Remaining HTML markup omitted for clarity */
</div>
</section>
You can find the updated CodePen link here:
https://codepen.io/chrislafrombois/pen/xxKyYPN