/* 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." */
a {
  color: #04001f;
}
body {
  background-image: url("landscape_background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #2727cc;
  color: #04001f;
  font-family: "Elms Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  padding: 0px 20px 20px 20px;
  width: 60%;
  height:auto;
  margin-left: 20%;
  margin-right: 20%;
}
.navbar {
  text-align: center;
  margin-bottom: 20px;
}

.navbar a {
  display: inline-block;
  background-color: white;
  color: #04001f;
  padding: 5px 10px;
  margin: 5px;
  text-decoration: none;
  border-radius: 3px;

  transition: transform 0.01s;
}

.navbar a:hover {
  transform: scale(1.2);
}

.narrow {
  max-width: 350px;
  margin: 20px auto;
}

.right_side {
  max-width: 350px;
  margin: 40px auto
}

.wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.chat {
  width: 500px;
}

.side {
  width: 200px;
}

.right_side{
  width: 400pf;
}

.rating-table td {
  padding: 5px 10px;
  vertical-align: middle;
}




