/* style.css */
.title {
    text-align: center;
    font-size: 24px; /* Default for desktop */
}

@media (max-width: 768px) {
    .title {
        font-size: 32px; /* Larger for mobile */
    }
}
