/* reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    /*  center vertically and horizontally  */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  main {
    display: grid;
    /* background: #ffb3c6; */
    grid-template-rows: repeat( 1fr);
    height: 100vh;
    align-items: center;
  }

  main time { 
    text-align: center;
    /* grid-column: span 1; */
  }
  
    /* optional. fixed aspect ratio   */
    /*   aspect-ratio: 16/9; */
  }
  
  .bento-item {
    background: gray;
    padding: 1rem;
  
    display: flex;
    justify-content: center;
    align-items: center;
  
    /* ui to indicate interaction */
    cursor: pointer;
  }
  
  .bento-item:hover {
    background: orange;
  }
  
  
  /* Responsive "tablet" size */
  @media (max-width: 768px) {
    .bento-container {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: auto;
      aspect-ratio: auto;
    }
  
    .feature-1,
    .feature-2,
    .feature-3 {
      grid-column: span 1;
      grid-row: span 1;
    }
  }
  
  /* Responsive "mobile" size */
  @media (max-width: 480px) {
    .bento-container {
      grid-template-columns: 1fr;
    }
  }
  