/* Files/style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
  padding: 20px;
}

[dir="rtl"] {
  direction: rtl;
  text-align: right;
  unicode-bidi: embed;
  font-family: 'David', 'Miriam', Arial, sans-serif; /* or a Hebrew-friendly font */
}
.bottom-left {
  position: fixed;
  bottom: 50px;
  left: 20px;
  width: 600px; /* optional, controls how wide the box is */
  text-align: left;
 }

footer {
  background-color: #000;
  color: #fff;
  text-align: right;
  padding: 10px 20px; /* top/bottom 10px, left/right 20px */
}