.home-portal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70vh;
    text-align: center;
    font-family: sans-serif;
  }
  
  .portal-left, .portal-right {
    flex: 1;
    padding: 4rem 2rem;
    text-decoration: none;
    color: inherit;
    transition: background 0.3s;
  }
  
  .portal-left:hover {
    background-color: #f0f0f0;
  }
  
  .portal-right:hover {
    background-color: #e0e0e0;
  }
  
  .portal-divider {
    width: 2px;
    background-color: #ccc;
    height: 60%;
  }
  