:root {
  font-size: 16px;
  font-family: sans-serif;
}

h1 {
  font-size: 2.4rem;
}

body {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#navbarContainer {
  width: 100%;
  display: flex;
  justify-content: center;
}

#navbar {
  width: 90%;
  max-width: 800px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

#submit, Button {
  color: white;
  font-size: 1.5rem;
  background: black;
  padding: 5px 15px 5px 15px;
  border-radius: 9px;
}

.bookmarkButton {
  width: 100%;
  margin-bottom: 10px;
  text-align: left;
}

#main {
  display: flex;
  flex-direction: column;
  width: 95%;
  max-width: 800px;
}

.formContainer {
  display: flex;
  flex-direction: column;
  align-self: center;
  width: 60%;
  min-width: 280px;
}

.flashContainer {
  margin-top: 40px;
  padding: 10px;
  background-color: grey;
  color: black;
  border-radius: 9px;
  font-size: 1.1rem;
  align-self: center;
}

.formWarning {
  color: red;
  white-space: nowrap;
  line-height: 150%;
  font-size: .7rem;
  font-style: italic;
  font-weight: bold;
}

.formButton {
  padding: 5px 15px 5px 15px;
  margin-top: 20px;
  border-radius: 9px;
  font-size: 1.5rem;
  color: white;
  background-color: black;
}
