 @font-face {
  font-family: "ModernTypewriter";
  src: url("fonts/MODERNTYPEWRITER.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
 
 body {
    background-image: url("background/plaidblue.jpg");
      background-attachment: fixed;
 }

.thatscurious {
  top: -10px;     
  width: 500px;
  }
  
.container {
  width: 100%;
  margin: 0 auto;
  background-color: transparent;

  display: grid;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 1fr 2fr;
  grid-gap: 15px;

  grid-template-areas: "head head head"
                       "leftbar main rightbar";

  > * {
    background-color: white;
    color: #000000;
    font-size: 14px;
    font-family: ModernTypewriter;
  }

  .pd {
    padding: 15px;
  }

  .header {
    grid-area: head;
background-color: transparent;
border: #000000;

    top: 0;
    z-index: 10;
  }

  .left-sidebar {
    grid-area: leftbar;

    position: -webkit-sticky;
    position: sticky;
    top: 200px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    box-1 {
      color: red;
      border: 10px ;
       position: -webkit-sticky;
       position: sticky;
      margin-bottom: 5px;
    }

    

  .main-content {
    grid-area: main;
  }
  
.thatscurious {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 150px;          /* adjust as needed */
  height: auto;

  z-index: 999;          /* stays above your grid */
  pointer-events: none; /* optional: lets clicks pass through */
}


