html {
    box-sizing: border-box;
    font-size: 16px;
    font-family: serif;
  }
  html, body {
    overscroll-behavior: none;
    color: rgb(38, 56, 255);
    mix-blend-mode:exclusion;
    /* background-color: rgb(94, 38, 38); */
  }
  *,
  *:before,
  *:after {
    box-sizing: inherit;
  }
  
  ::selection {
    color: rgb(255, 255, 255);
    /* background: #ffffe0; */
    background: rgb(255, 38, 226);
  }
  
  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  ol,
  ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
    overflow-wrap: break-word;
  }
  header {
    position: sticky;
    top: 0; 
    background: white;
    /* backdrop-filter: blur(10px); */
  }
  h1 {
    font-size: 2em;
/* padding: 10px; */
  }
  img,
  picture,
  video,
  canvas,
  svg {
    display: block;
    max-width: 100%;
  }
  
  img {
    cursor:zoom-in;
    user-select:none;
    -webkit-user-select: none;

    
  }
  .expand img {
    cursor:zoom-out;
    width:100%;
        filter: none;

  }
 
  /* img:hover {
    filter: invert(100%);

  } */
  
  section {
    /* display: flex; */
    position: fixed;
    /* justify-content: center; */
    width: 100vw;
    font-size: 50px;
  }



  #blockspace {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;

  }
  
  .block {
    width: 25%;
    padding-bottom: 1rem;
    cursor:default;
  }
  
  /* .block-title {
    color: rgb(253, 17, 135);
  }
  .block-description {

  } */
.top {
display: flex;
position: fixed;
top: 10px;
justify-content: center;
width: 100vw;
white-space: nowrap;
}


.left {
    position: fixed;
    transform:  translateX(-50%) translateY(-50%) rotate(-90deg);
    white-space: nowrap;
    top: 50%;
    left: 0%;
    margin-left: 5rem;

}
.right {
    position: fixed;
    display: flex;
    justify-content: center;
    width: 100vh;
    transform-origin: center right;
    top: -8%;
    right: 0%; 
    transform: rotate(-90deg); 
    white-space: nowrap; 
    margin-right: 5rem; 
    padding: 0px; 
}
  .hidden {
    display: none;
  }

  .aboutbutton {
    cursor: cell;
    user-select: none;
    -webkit-user-select: none;
    color: rgb(38, 56, 255);

  }
  .aboutbutton:hover {
  /* text-decoration: underline solid rgb(16, 255, 48) 3px;
  text-underline-offset: 3px; */
  font-style:oblique;
  }
  /* #about {
 
  } */
  #about {
    cursor: cell;
    user-select: none;
    -webkit-user-select: none;
  }
 
  .grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns with each taking 25% */
    /* align-items: end; */
  }
  .grid-item {
    padding-right: 10%;
  }
  

    .expand {
      width: 50%;
    }
  
    .onlymobile {
      display:none;
    }
  
  @media only screen and (max-width: 900px) {
      .grid-container {
          grid-template-columns: repeat(2, 1fr);
          row-gap: 1rem;
      }
      .block {
          width: 50%;
        }
        .onlydesktop {
          display:none;
        }
      }
  
  
  
  
  @media only screen and (max-width: 600px) {
    .grid-container {
      grid-template-columns: repeat(1, 1fr);
    }
    .expand {
      width: 100%;
    }
  
    .onlymobile {
      display:block;
    }

    h1 {

       font-size: 50px;
    }

    .left {
        margin-left: 3rem;

    }
    .right {
    margin-right: 3rem;
    top: -3%;

    }

    h1 {

    }

    .grid-container {
        /* margin-block-start: 30px; */
    }
  }
  
