/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
@import url('https://fonts.googleapis.com/css2?family=Yomogi&display=swap');
body {
  text-align: center;
  align-items: center;
  background-color: white;
  color: grey;
  font-family: Yomogi;
}
/*Paragraph*/
p {
  color: black
}
header {
  background-color: white; /* Dark background color */
  padding: 10px 20px; /* Some padding around the content */
  justify-content: space-between; /* Space out the logo and nav links */
  align-items: center; /* Vertically center the items */
  text-align: center;
}
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f1f1f1;
  padding: 8px;
  text-align: center;
  z-index: 1000;
}
#container {
  border: lightcoral 7px groove;
  border-radius: 15px;
  height: 600px;
  width: 70%;
  margin: auto;
  padding: 50px;
  background: #d9b2b2;
  display: flex;
  justify-content: center;
  align-items: center;
}
#lefttable{
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 130px;
  background-color: #f1f1f1;
  height: 100%; /* Full height */
  position: fixed; /* Make it stick, even on scroll */
  overflow: auto; /* Enable scrolling if the sidenav has too much content */
}
li a {
  display: block;
  color: black;
  padding: 8px 16px;
  text-decoration: none;
}