*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  body {
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
    line-height: 1.2;
    scroll-behavior: smooth;
    background-color: white;
  }
  h1 {
    font-size: 14px; 
    text-align: center;
  }
  header {
    padding: 36px 12px;
  }
  main {
    padding: 12px 12px 120px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    row-gap: 120px;
    align-items: center;
  }
  a {
    place-self: center;
  }
  img {
    max-width: 300px;
    max-height: 300px;
  }





@media screen and (max-width: 800px) {
    main {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 600px) {
    main {
        grid-template-columns: 1fr;
    }
}