html{
    background-image: url(/images/background1.jpg);
    background-size: cover;
}

@font-face {
    font-family: 'Dot Gothic';
    src: url('fonts/dotgothic16-regular-webfont.woff2') format('woff2'),
         url('fonts/dotgothic16-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Coral Pixels';
    src: url('fonts/CoralPixels-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

/* Buttons and UI */

.menu-button {
  margin-bottom: 0px;
  /*rgb(73, 104, 161)*/
  background-color: #293c42;
  border: 4px ridge #5e787f;
  border-radius: 1px;
  width: 100%;
  height: 3em;
  text-align: center;
  font-family: 'Dot Gothic';
  color: white;
}

.menu-button:hover{
  background-color: #5e787f;
  border: 4px ridge #293c42;
  color: white;
}

.menu-button:active{
  background-color: rgb(231, 146, 103);
  color: black;
}

/* Site Formatting */
body {
  font-family: Arial, Helvetica, sans-serif;
}

header {
  font-family: 'Dot Gothic';
  font-size: 32px;
  color: white;
  /* former background color was 0a0642 */
  padding: 5%, 5%, 5%, 5%;
  margin-left: 5%;
  margin-top: 5%;
  width:fit-content;
  height:auto;
  

}

nav {
  background-color: rgb(186, 173, 139);
  border: 4px ridge rgb(161, 147, 111);
  border-radius: 4px ;
  font-family: Arial;
  color: white;
  padding: 20px 20px 20px 20px;
  height: auto;
  width: fit-content;
  margin-left: 8%
}

#main-container {
  font-family: 'Dot Gothic';
  display: flex;
  margin-top: 1%;
  margin-left: auto;
  justify-content: center;
  
}

#lside {
  /*background-color: rgb(73, 104, 161);*/
  border: 1;
  border-radius: 16px ;
  color: white;
  padding-top:0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 10px;
  height: auto;
  width: 20%;
}

#rside {
  /*background-color: rgb(73, 104, 161);*/
  border: 1;
  border-radius: 16px ;
  color: white;
  padding-top:0;
  padding-bottom: 0;
  padding-left: 10px;
  padding-right: 0;
  height: auto;
  width: 20%;
}

#menu{
  background-color: #34494f;
  border: 8px ridge #5e787f;
  border-radius: 4px;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 10px;
  padding-right: 10px;
}

#chat{
  background-color: #34494f;
  border: 8px ridge #5e787f;
  border-radius: 4px;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

main {
  background-color: #ffffff;
  border: 8px ridge lightgray;
  border-radius: 4px;
  padding: 25px 25px 25px 25px;
  width: 85vh;
  height: auto;
  margin-top: 0%;
  margin-left: 0%;
  margin-right: 0%;
  overflow-y: auto;
  font-family: 'Arial';
}

footer {
  background-color: white;
  border: 8px ridge lightgray;
  border-radius: 4px;
  font-family: 'Coral Pixels';
  font-size:small;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 20px;
  padding-right: 20px;
  width: auto;  
  height: auto;
  margin-top: 0.5%;
  margin-left: 5%;
  margin-right: 5%;
}