body {
  font-family: verdana, sans-serif;
  background-color: #0f0426;
  overflow: hidden;
}

button {
  font-size: 100%;
}

#chatCountdown {
  display: none;
  font-size: 4em;
  color: yellow;
  position: absolute;
  text-shadow: 1px 1px 10px black;
  top: 5px;
  right: 0px;
  width: 110px;
  text-align: center;
}

#musicPlayer {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
}

#help {
  position: absolute;
  bottom: 10px;
  right: 0px;
}

#help a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 10px;
}

#help a:hover {
  color: wheat;
  background: black;
}

#helpContent {
  padding: 10px;
  color: wheat;
  overflow: auto;
  max-width: 800px;
}

#helpContent a {
  color: cornflowerblue;
  font-weight: bold;
  text-decoration: none;
  padding: 3px;
}

#helpContent a:hover {
  background-color: black;
  color: yellow;
}

.flowDiagram {
  font-size: 200%;
  padding-bottom: 0.5em;
}

.dim {
  opacity: 50%;
}

#adminContent {
  color: wheat;
}

#container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: absolute;
}

#header {
  width: 100%;
  color: white;
  font-size: 300%;
}

#activity {
  color: #eef8b6;
}

#content {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.leftHalf {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rightHalf {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding-left: 10px;
  font-size: 200%;
  color: wheat;
}

#now {
  color: white;
}

.highlightText {
  font-weight: bold;
  font-size: 120%;
  text-shadow: 2px 2px 4px #000000;
}

#image { 
  height: 1px;
  width: 1px;

}

#imgCaption {
  background-color: black;
  color: white;
  font-weight: bold;
  font-size: 150%;
  background-color: black;
}

#edit {
  background-color: wheat;
  padding: 10px;
  position: absolute;
  top: 60px;
  width: 33em;
  height: 75%;
  box-shadow: 1px 1px 13px 7px black;
  border-radius: 5px;
  display: none;
  height: 75%;
}

#notes {
  display: inline;
  width: 28em;
  height: 11em;
  margin-right: 10px;
  z-index: 0;
  position: relative;
}

#people {
  display: inline;
  width: 6em;
  height: 11em;
  white-space: nowrap;
}

.input_wide {
  width: 29em;
  margin-bottom: 0.5em;
}

.input_text {
  width: 8em;
}

.input_days {
  width: 7em;
}

.input_name {
  width: 8em;
  margin-left: 0.5em;
}

.input_activity {
  width: 27em;
}

.input_note {
  width: 6.5em;
}

.input_hour {
  width: 4.5em;
}

.input_min {
  width: 3em;
}

.input_repeat {
  width: 10em;
  margin-left: 1em
}

.editSection {
  padding-bottom: 1em;
}

#login {
  background-color: wheat;
  top: 10%;
  width: 18em;
  box-shadow: 1px 1px 13px 7px black;
  border-radius: 5px;
  display: none;
}

.login_row {
  padding: 0.2em 0;
}

input[id="email"] {
  width: 20em;
}

#loginButtons {
  padding: 1em 0;
  text-align: right;
}

.input_label {
  width: 9em;
}

.input_login {
  width: 8em;
}

#files {
  background-color: wheat;
  padding: 10px;
  position: absolute;
  top: 60px;
  width: 650px;
  height: 75%;
  box-shadow: 1px 1px 13px 7px black;
  border-radius: 5px;
  display: none;
}

.fileRow {
  padding: 5px;
}

.fileRow:hover {
  background-color: moccasin;
}

.fileThumbnail {
  height: 70px;
  border: 3px solid burlywood;
}

.fileName {
  font-weight: bold;
  color: black;
  cursor: pointer;
  padding: 5px;
}

.fileName:hover {
  background-color: burlywood;
  color: black;
}

.fileNameInput {
  width: 100%;
  display: none;
  font-size: 100%;
  font-weight: bold;
  padding: 5px;
  background-color: white;
}

#cover {
  background-color: black;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hide_cover {
  right: 0;
  bottom: 0;
  height: 0;
  width: 0;
}

#buttons {
  position: absolute;
  width: 100%;
  display: none;
}

#stopChatButton {
  position: absolute;
  top: 5px;
  right: 150px;
  display: none;
}

#localVideo {
  position: absolute;
  height: 85px;
  top: 0;
  right: 0;
  display: none;
}

#remoteVideo {
  position: absolute;
  width: 100%;
  top: 85px;
  display: none;
}

#error {
  display: none;
  position: absolute;
  bottom: 30px;
  right: 0;
  font-size: 70%;
  color: wheat;
  text-shadow: 1px 1px 10px black;
  background: maroon;
  padding: 5px;
  border-radius: 10px;
}

dialog {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.dialogHeader {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 150%;
  font-weight: bold;
  color: #947b5a;
  border-bottom: 3px solid burlywood;
  padding-bottom: 0.25em;
}

.dialogContent {
  flex-grow: 20;
  overflow-x: hidden;
  overflow-y: scroll;
  padding-top: 0.5em;
}

.dialogFooter {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding: 0.51em;
  border-top: 3px solid burlywood;
}

.dialogFooter div {
  padding: 0 0.5em;
}

button, input[type="file"], input[type="submit"] {
  cursor: pointer;
}

.dialogClose {
  cursor: pointer;
}

.dialogClose :hover {
  color: darkorange;
}

fieldset {
  border: 3px solid burlywood;
  /* rgb(170, 120, 55); */
}

label {
  display: inline-block;
  padding: 0 0.5em;
}

#days {
  display: flex;
  flex-direction: column;
}

#days>div {
  padding-top: 0.25em;
  padding-bottom: 0.5em;
  line-height: 1.5em;
  border-bottom: 3px solid burlywood;
}

.animate {
  position: absolute;
}

@media only screen and (max-width: 900px) {
  .rightHalf {
    font-size: 180%;
  }
}

@media only screen and (max-width: 800px) {
  .rightHalf {
    font-size: 170%;
  }
}


@media only screen and (max-width: 700px) {
  .rightHalf {
    font-size: 160%;
  }
}

@media only screen and (max-width: 600px) {
  .rightHalf {
    font-size: 150%;
  }
}

@media only screen and (max-width: 500px) {
  .rightHalf {
    font-size: 140%;
  }
}