*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
#root, #__next {
  isolation: isolate;
}

html,
body {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  font-size: 1em;
  line-height: 25px;
  max-width: 100%;
  min-width: 320px;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: none;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.site-header {
  display: flex;
justify-content: center;
  margin-bottom: 40px;
  padding: 20px 0 10px;
  font-family: Comic Sans MS;
  font-size: 50px;
  color: orangered;
}

.main-content {
  max-width: 1260px;
  margin: auto;
}

.container {
 display: grid;
 gap: 24px;
}

.card {
  border: 1px solid #a7a7a7;
  aspect-ratio: 1/1;
  background-color: #fff;
}

@media (min-width: 400px) {
  .container {
    grid-template-columns: 1fr 1fr;
  }
 .card {
 }
}

@media (min-width: 768px) {
    .container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
 .card {
 }
}
