.header {
  background-color: rgb(44,120,115);
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 2px solid rgb(2,28,30);
}

.header-left {
  width: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  padding-left: 50px;
  padding-right: 20px;
  color: rgb(2,28,30);
}

.website-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 8px;
}

.website-subtitle {
  font-size: 18px;
  margin-left: 30px;
  white-space: nowrap;
}

.header-right {
  width: 420px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  padding-right: 50px;
}

.header-right button {
  background-color: rgb(0,68,69);
  color: white;
  border: 1px solid white;
  border-radius: 5px;
  padding: 10px 15px;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.header-right button:hover {
  background-color: white;
  color: rgb(0,68,69);
  border-color: rgb(0,68,69);
}

.header-right button:active {
  opacity: 0.6;
}