/* 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;
  }

  .bento-main-container {
    width: 90%;
    max-width: 1200px;
    padding: 2rem;

    display: grid;
    grid-template-columns: 1fr; 
    grid-template-rows: auto auto;
    gap: 1rem; 
}



  .bento-container-1 {

    width: 90%;
    max-width: 1200px;
    padding: 2rem;
 
    justify-content: center;
    align-items: center;
  
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;


  background: rgba(240, 227, 227, 0.048);

  backdrop-filter: blur(10px);
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  

  }



  
  .bento-container-2 {

    width: 90%;
    padding: 2rem;
  
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 1rem;

  background: rgba(240, 227, 227, 0.048);

  backdrop-filter: blur(10px);
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  
    /* optional. fixed aspect ratio   */
    /*   aspect-ratio: 16/9; */
  }

  
  
  .bento-item {

    padding: 1rem;
  
    display: flex;
    justify-content: center;
    align-items: center;

  position: relative;
 
  backdrop-filter: blur(5px);
  padding: 1.5rem;

  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  overflow: hidden;
  transition: all 0.4s ease;
  
    /* ui to indicate interaction */
    cursor: pointer;
  }
  
  .feature-1:hover {
    background: white;
    transform: scale(1.1);
    transition: 1s ease;

    color: var(--cyan-3);
   

    box-shadow: 0 8px 32px var(--cyan-3);;
  }

  .feature-3:hover {
    background: white;
    transform: scale(1.1);
    transition: 1s ease;

    color: var(--pink-4);
   

    box-shadow: 0 8px 32px var(--pink-4);;

    
  }


.bento-item:hover {
    background: white;
    transform: scale(1.1);
    transition: 1s ease;
  }
  

 .feature-2:hover {
color: var(--pink-6);
 } 


 .feature-4:hover {
  color: var(--purple-6);
 }


 .feature-5:hover {
  color: var(--green-6);
 }
  /* Featured items */
  .feature-1 {
  
    grid-column: span 1;
 
    background: var(--gradient-22);
    width: 100%;
    height: 100%;

    border-radius: 2rem;

  }
  
  .feature-2 {
    grid-column: span 1;
    grid-row: span 1;
    border-radius: 50rem;
  
    border: 1px solid rgba(255, 255, 255, 0.2);

    background: rgba(255, 255, 255, 0.2);

  }

 
  
  .feature-3 {

    grid-column: span 1;
    width: 100%;
    height: 100%;
    border-radius: 2rem;

  }

  .feature-5 {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.2);
  }

  .feature-4 {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.2);
  }


  
  
  
  /* 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;
    }
  }
  