@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');


/* styles/globals.css */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #111;
}
.responsive-box {
  height: 200px; /* Default for md and lg */
}

@media (max-width: 768px) {
  .responsive-box {
    height: 350px; /* For sm and down */
  }
}


