body {
  margin: 0;
  font-family: "Basis Grotesque Pro", arial, sans-serif;
  background-color: #f4f4f4;
}

header {
  background: #1b4949;
  padding: 0;
  transition: padding 0.25s ease-in-out;
  width: 100%;
  z-index: 9998;
}

h1 {
  margin: 0;
}

nav {
  margin: 20px 0;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px 15px;
}

nav a:hover {
  background: #e8491d;
}

.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

footer {
  background: #35424a;
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
  position: relative;
  bottom: 0;
  width: 100%;
}

.header-logo {
  padding-left: 3rem;
}

.header-flex {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 75px;
}

.header-logo img {
  display: inline-block;
  height: 2rem;
  transition: width 0.25s ease-in-out;
  width: auto;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

.greeting {
  font-size: 1.5rem;
  margin-left: 1rem;
  padding: 2rem;
}

.header-user-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-right: 3rem;
}

.user-name {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
}

.logout-btn {
  background: none;
  border: none;
  color: rgb(253, 241, 209);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logout-btn:hover {
  opacity: 0.8;
}

.logout-btn:focus {
  outline: 2px solid rgb(253, 241, 209);
  outline-offset: 2px;
}

