body {
    background-color: #000000; 
    color: #8d0707;
  }
  
  @import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap'); 
  @import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Pinyon+Script&display=swap');
  
  :root {
  
      /* VARIABLES */
  
      /* Typography */
    --headingFont: 'DM Serif Display', sans-serif;
    --bodyFont: 'DM Serif Display', sans-serif;
  
    --baseFontSize: clamp(0.75rem, 0.78rem + 0.38vw, 1.25rem);
  
    --type-scale: 1.57;
  }
  html {
      font-size: var(--baseFontSize);
      scroll-behavior: smooth;
      font-family: var(--bodyFont);
    }
  
    h1, h2, h3, h4, h5, h6 {
      font-family: var(--headingFont);
      margin-bottom: var(--space-3);
    }  

        /* basic grids */

        
.maingrid {
  display: grid;
  grid-template-columns: 3fr 2fr 0.1fr 3fr;
  grid-template-rows: 2fr 1fr 0.1fr 3fr 0.1fr 3fr 0.8fr 1fr 2fr;
  padding-top: 2vw;
  width: 100%;
}

.maingrid li:nth-child(1) {
    grid-row: 2 / span 7;
    grid-column: 2 / span 4;
    z-index: 2;
}

.maingrid li:nth-child(2) {
    grid-row: 1 / span 2;
    grid-column: 1 / span 3;
    width: 100%;
    z-index: 1;
}

.maingrid li:nth-child(3) {
    grid-row: 4 / span 4;
    grid-column: 1 / span 3;
    width: 100%;
    z-index: 1;
}

.maingrid li:nth-child(4) {
    grid-row: 6 / span 6;
    grid-column: 1 / span 3;
    width: 100%;
    z-index: 1;
}

.maingrid li:nth-child(5) {
    grid-row: 8 / span 9;
    grid-column: 2 / span 4;
    width: 100%;
    z-index: 1;
}

.maingrid li:nth-child(6) {
  grid-row: 1 / span 1;
  grid-column: 4 / span 4;
  z-index: 1;
}

.maingrid li:nth-child(7) {
  grid-row: 7 / span 7;
  grid-column: 1 / span 2;
  z-index: 1;
}

.maingrid li:nth-child(8) {
  grid-row: 8 / span 9;
  grid-column: 1 / span 1;
  z-index: 1;
}



  nav {
    margin-left: 5vw;
    height: 80px;
    background: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem calc((100vw - 1300px)/2);
  }
  nav a {
      color: #8d0707;
      padding: 0 1.5rem;
  }