body {
    display: grid;
    grid-template-rows: auto auto 1fr auto; 
    grid-template-columns: 6fr;
    height: 100vh;
    margin: 0;
    padding: 0;
  }
  
  header {
    background-color: rgba(125, 50, 255, 0.60);
  }
  
  nav {
    background-color: rgba(251, 255, 129, 0.60);
  }
  
  main {
    display: grid;
    grid-template-columns: 100px 1fr; 
    grid-template-rows: auto; 
    background-color: rgba(97, 246, 102, 0.6);
  }
  
  section {
    background-color: rgba(249, 68, 143, 0.60);
    grid-row: 4;
    grid-column: 2 / 3;
    grid-area: auto;
    padding: 160px;
    justify-content: center;
    align-items: center;
  }

  
  .sidebar {
    background-color: rgba(255, 255, 0, 0.3); 
    grid-column: 1; 
    grid-row: 5; 
  }
  
  footer {
    background-color: rgba(100, 254, 236, 0.60);
    padding: 20px;
  }