@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap");

body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  margin: 50px 0;
  font-family: "Lora", serif;
}

.en {
  background: #ffdddd;
}
.fr {
  background: #ddffdd;
}
.nl {
  background: #ddddff;
}

.container,
.navbar {
  max-width: 768px;
  width: 90%;
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid black;
}

.container {
  border-top: none;
  background: white;
}

.navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  position: sticky;
  top: 0;
  height: 50px;
  background: #eeeeee;
}
