body {
  margin: 0;
  padding: 0;
  background-color: #fffffa;
  display: flex;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
  background-color: #ffff00;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em 1em;
  flex-wrap: wrap;
}

.nav-left {
  display: flex;
  align-items: center;
}

.flag-icon {
  height: 60px;
  margin-right: 10px;
}

.nav-title {
  font-size: 2em;
  font-weight: bold;
  color: black;
}

.nav-links a {
  margin-left: 15px;
  text-decoration: none;
  font-weight: bold;
  color: #0033cc;
  font-size: 1.1em;
}

.nav-links a:hover {
  text-decoration: underline;
}

.content {
  text-align: center;
  padding: 3em 1em;
}

.content h1 {
  font-size: 2.8em;
  color: #222;
}

.page-wrapper {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

.side-bar {
  width: 10%;
  background-color: #f4f5ae;
}

.main-content {
  width: 80%;
  padding: 20px;
}
