html {
  background-color: white;
  font-family: sans-serif;
  font-size: 16px;
  color: rgb(35, 35, 35);
}

.header {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
  color: #03f
}

.leftHeader {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tagline {
  font-weight: 700;
}

.centerHeader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  font-size: 72px;
  font-weight: 1000;
}

.rightHeader {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.userSelector {
  margin-bottom: 16px;
}

.divider {
  margin-top: 8px;
  margin-bottom: 8px;

  width: 85%;
  height: 0px;

  border-style: solid;
  border-color: #03f;
  border-width: 1px;
}

.viewer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.postForm {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 350px;
}

h3 {
  margin-bottom: 8px;
}

textarea {
  width: 100%;
  min-height: 100px;
}

input {
  width: 100%;
}

button {
  font-size: 18px;
  padding-left: 8px;
  padding-right: 8px;

  background-color: #03f;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  border-color: #03f;
  color: white;

  &:hover {
    background-color: rgb(37, 80, 252);
    border-color: rgb(37, 80, 252);
    cursor: pointer;
  }
}

.rightHeaderActions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}

.goToModerationButton {
  font-size: 14px;
  padding-left: 8px;
  padding-right: 8px;

  background-color: transparent;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  border-color: #03f;
  color: #03f;;

  &:hover {
    background-color: rgb(37, 80, 252);
    border-color: rgb(37, 80, 252);
    color: white;
    cursor: pointer;
  }
}

.logoutButton {
  font-size: 14px;
  height: 27px;
  padding-left: 4px;
  padding-right: 4px;
  margin-left: 8px;

  background-color: transparent;
  border-radius: 16px;
  border-style: solid;
  border-width: 1px;
  border-color: transparent;
  color: rgb(156, 59, 59);

  &:hover {
    background-color: rgb(153, 91, 91);
    border-color: rgb(156, 59, 59);
    color: white;
    cursor: pointer;
  }
}

.message {
  padding: 8px;
}

.error {
  background-color: rgb(114, 0, 0);
  color: white;

  border-radius: 4px;
  border-width: 1px;
  border-color: rgb(78, 0, 0);
}

.success {
  background-color: rgb(81, 227, 81);
  color: black;

  border-radius: 4px;
  border-width: 1px;
  border-color: rgb(34, 121, 34);
}