#main {
    width: 95%;
    height: 85%;
    left: 50%;
    top: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    background-color: grey;
    border-radius: 3vw;
    box-shadow: 0px 0px 10px 10px black;
    display: inline-block;
    overflow: hidden;
  }
  body {
    margin: 0;
    padding: 0;
    font-family: Arial;
    font-size: 2vw;
  }
  .seperator {
    background-color: black;
    height: 2px;;
    width: 2px;
    display: inline-block;
  }
  #vseperator {
    background-color: black;
    height: 100%;
    width: 2px;
    display: inline-block;
  }
  #people {
    position: absolute; 
    left: 0%;
    width: 25%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(auto, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  #container {
    position: absolute; 
    left: 0%;
    width: 100%;
    height: 100%;
    overflow: auto;
  }
  .person {
    font-family: Unbounded;
    font-size: auto;
    text-align: center;
    width: 100%;
    grid-column: 1;
    grid-row: auto;
    border-style: none solid solid none;
    border-width: 2px;
    cursor: pointer;
    display: inline-block;
  }
  #title {
    position: absolute;
    left: calc(25% + 2px);
    width: calc(75% - 2px);
    font-family: Unbounded;
    font-size: auto;
    text-align: center;
    border-style: none none solid;
    border-width: 2px;
  }
  #sep {
    height: 100%;
    width: 2px;
    position: absolute;
    left: calc(25% - 0px);
    top: 0%;
    background-color: black;
  }
  #msgbox {
    position: fixed;
    left: 25%;
    bottom: 0%;
    height: 1.75vw;
    width: 75%;
    border-style: solid solid none solid;
    border-width: 2px;
    border-color: black;
    font-size: 1.5vw;
    outline-width: 0;
  }
  #messages {
    position: fixed;
    width: 75%;
    left: 25%;
    top: 2.5vw;
    height: calc(100% - 3.5vw);
    overflow: auto;
  }
  .message {
    color: black;
    padding-left: 10px;
    padding-top: 5px;
  }
  .sysmessage {
    color: #a8a8a8;
    font-style: italic;
    
  }
  .privateMSG {
    background-color: grey;
    border-radius: 3vw;
    box-shadow: 0px 0px 10px 10px;
    width: 90vw;
    height: 65%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  #x {
      position: absolute;
      right: 2%;
      font-weight: bolder;
      top: 2px;
      cursor: pointer;
  }
  #privm {
    position: fixed;
    width: 100%;
    left: 0%;
    top: 2.5vw;
    height: calc(100% - 3.5vw);
    overflow: auto;
  }