﻿.custom-header {
  padding: 0;
  margin: 0;
  height: 5rem;
  margin-bottom: 1rem;
  background-image: url("/images/header.png");
  background-repeat: no-repeat;
  background-size: auto 450%;
  background-position: right;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.custom-header .heading {
  font-size: 30px;
  margin-left: 1rem;
  color: white;
}
.custom-header .items {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  padding-inline: 1rem;
}
.custom-header .items .item {
  font-size: 1.3rem;
  color: white;
  letter-spacing: 0.75rem;
  cursor: pointer;
  justify-content: space-between;
  display: flex;
}
.custom-header #collapsible-nav {
  display: none;
  cursor: pointer;
  fill: white;
  margin-left: 1rem;
  width: 22px;
}
@media screen and (max-width: 500px) {
  .custom-header .heading {
    font-size: 1.3rem;
  }
  .custom-header #collapsible-nav {
    width: 20px;
    display: inline-block;
  }
}
