@import url('https://fonts.cdnfonts.com/css/satoshi');

:root {
  --off-white: #FBFBFB;
  --bg-blue: #BEE7F0;
  --orange: #F9902B;
}

/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Satoshi, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* Shared styles */
body {
  font-family: Arial, sans-serif;
  background-color: var(--off-white);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}

.top-bar {
  color: var(--orange);
  background-color: var(--off-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 60px;
}

main.with-top-bar {
  margin-top: 60px;
}

.top-bar h2 {
  flex: 1;
}

.top-bar h1 {
  font-size: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 8px;
  padding-right: 8px;
}


h1 {
  font-weight: 600;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.8em;
}

.logoutbtn {
  background: none;
  font-weight: 600;
  border: none;
  color: var(--orange);
  cursor: pointer;
}