
body, html {
    background: black;
    background-color: black;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
#pp {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  #toggleChatBtn {
    margin-left: 6.9vw;
  }
  

  #chatbox {
    width: 90vw;
    max-width: 600px;
    height: 72vh;
    background: rgb(0, 0, 0);
    border-radius: 12px;
    padding: 20px;
    margin: 10vh auto 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    color: white;
  }
  
  #chatlog {
    flex-grow: 1;
    overflow-y: auto;
    font-size: 1rem;
    margin-bottom: 1rem;
    max-height: 40vh;
    line-height: 1.6;
    padding-right: 4px;
  }
  
  input#user_input {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    height: 7svh;
    background: rgba(255, 255, 255, 0);
    color: #ffffff;
    margin-bottom: 4.8svh;
    border: none;
    border-radius: 8px;
    box-sizing: border-box;
  }
  
  #but {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    background: white;
    color: black;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    z-index: 1001;
  }
  
  #but:hover {
    background: #3edb8d;
  }
  
  .boxbtn, .boxbtn button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.9rem;
    text-decoration: underline;
    cursor: pointer;
  }
  
  button {
    all: unset;
    background: #000;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    display: inline-block;
  }
  
  button:hover {
    background: #000000;
  }
#land {
    visibility: hidden;
    display: none;
}

  @media screen and (max-width: 969px) and (orientation: landscape) {
   body, html {
    background-color: #000;
    background: black;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
   }
   
    #botsection {
        visibility: hidden;
        display: none;
    }

#land {
    font-size: 2rem;
    color: white;
    visibility: visible !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    align-content: center;
    width: 100vw;
}
  }