
            html 
            { background-image: url(https://files.catbox.moe/paz96c.jpeg);
            }
      
            
            body 
            
            
            { cursor: url(cursors/point.png), auto;}
            a:hover { cursor: url(cursors/click.png), auto;  }
            .whole {
              /* background-color: #95a5a6; */
              width: 1100px;
              overflow: hidden;
              margin: 0 auto 0 auto;
              /* padding: 20px;  */
            }
            .sidebar {
              float: left;
              margin-left: -40px;
               background-color: antiquewhite; 
              position: absolute;
              top: 200px;
            }
            .sidebar a{
              font-size: 20px;
              text-decoration: none;
            }
            .whole img {
              /* border: 2px solid #fff; */
              padding-top: 10px;
              height: 620px;
              width: auto;
              display: block;
              margin: 0 auto;
            }
            ul {
              list-style-type: none;
              padding: 0;
              margin: 30px;
            }
            li {
              margin-bottom: 10px;
            }
            /* div button:first-of-type {
              float: left;
            }
            div button:last-of-type {
              float: right;
            }
             */
            button {
              background-color: black; 
              color: #27ae60; 
              border: none;
              font-size: 20px; 
              font-weight: bold; 
              width: 50px; 
              cursor: pointer;
              padding: 5px;
            }
            .buttons {
              margin-top: 5px;
              display: block;
              text-align: center;
              word-spacing: 20px;
            }
            
        .box {
  border: 2px solid black;
  padding: 5px;
  margin: 5px;
  height: 500px;
}

.grid-container {
  display: grid;
  grid-template-areas: "col1 col2 col2 col2 col2 col2";
}

#g1 {
  grid-area: col1;
}

#g2 {
  grid-area: col2;
}
