body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%; 
    max-height: 100%; 
    font-family:Sans-serif;
    line-height: 1.5em;
      font-family: Verdana, Geneva, sans-serif;
      font-size: 20px;
      letter-spacing: 2px;
      word-spacing: 2px;
      color: #FFFFFF;
      font-weight: normal;
      text-decoration: none;
      font-style: normal;
      font-variant: normal;
      text-transform: none;
}
main {
    position: fixed;
    top: 320px; /* Set this to the height of the header */
    bottom: 0px; /* Set this to the height of the footer */
    left: 0px; 
    right: 350px;
    overflow: auto; 
    background: rgb(31, 31, 31);
    color: rgb(179, 179, 179);
}
#header {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 320px; 
    overflow: hidden; /* Disables scrollbars on the header frame. To enable scrollbars, change "hidden" to "scroll" */
    color: rgb(179, 179, 179);
    background-image: url("../panorama.jpg");
    background-size:     cover;                      /* <------ */
    background-repeat:   no-repeat;
    background-position: center center;              /* optional, center the image */
}

ul {
  
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
    
  }
  
  li {
    float: left;
    border-right:1px solid #bbb;
    background-color: #333;
  }
  
  li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  li a:hover:not(.active) {
    background-color: #00831c;
  }
  
  .active {
    background-color: #002215;
  }

  #discord{
    position: absolute; 
    top: 320px; /* Set this to the height of the header */
    bottom: 0px; /* Set this to the height of the footer */
    right: 0; 
    width: 350;
    overflow: auto; /* Scrollbars will appear on this frame only when there's enough content to require scrolling. To disable scrollbars, change to "hidden", or use "scroll" to enable permanent scrollbars */
    background: rgb(31, 31, 31);	
}

p, h1,h2,h3,a {
  color: rgb(179, 179, 179);
}
