.wrap {
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-sizing: border-box;
    height: 100vh;
    padding: 2rem;
    background-color: #eee;
  }
  
  .containerX {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 1rem;
    background-color: #fff;
    width: 1200px;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0rem 1rem 2rem -0.25rem rgba(0, 0, 0, 0.25);
    
  
    
   
    
   
      
      
       
      
      
      & > small {
        color: #777;
        margin-right: 1rem;
      }
    }
  

  .headingX {
    padding: 1rem 0;
    border-bottom: 1px solid #ccc;
    text-align: center;
    
   
  }

  .contentX {
    flex-grow: 1;
    overflow-y: scroll;
    margin-top: 20px;
  }
  
  .buttonX {
    background-color: #4761FF;
    box-shadow: 0rem 0.5rem 1rem -0.125rem rgba(0, 0, 0, 0.25);
    padding: 0.8rem 2rem;
    border-radius: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: transform 0.25s, box-shadow 0.25s;}

    .navX {
        border-top: 1px solid #ccc;
        text-align: right;
        padding: 2rem 0 1rem;

    }

    .buttonX:hover {
        box-shadow: 0rem 0rem 1rem -0.125rem rgba(0, 0, 0, 0.25);
        transform: translateY(-0.5rem);
        color: white;
        font-weight: 600;
      }

      h2 {
        font-size: 1.75rem;
        line-height: 1.75rem;
        margin: 0;
      }