html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  user-select: none;
  font-family: Arial, sans-serif;
}

#displayArea {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}

#communityArea {
  width: 100vw;
  margin: 0;
  padding: 0;
  height: 50%;
  position: absolute;
  bottom: 0px;
  overflow-y: hidden;
  border-top-style: solid;
  border-bottom-style: solid;
  border-width: 1%;
  text-align: left;
  
  overflow-x: scroll;

  overflow-y: hidden;

  white-space: nowrap;
}
#stretchContainer {
  height: 100%;
  width: 252px;
}
#stretchContainer div {
  text-align: center;
  height: 100%;
  width: 250px;
  overflow-y: auto;
  border-left-style: solid;
  border-right-style: solid;
  border-width: 1px;
  float: left;
}
#stretchContainer div div {
  all: initial;
  text-align: center;
  font-family: Arial, sans-serif;
}
.dataArea input {
  text-align: center;
}

#addCommunity {
  background-color: #eeeeee;
  transition-duration: 0.5s;
  animation-name: addCommIdle;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  cursor: pointer;
}
#addCommunity:hover {
  background-color: #cccccc;
  animation-name: addCommHover;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
#addCommunity:active {
  cursor: default;
}

#commisionBox {
  position: fixed;
  top: 0;
  left: -25%;
  width: 30%;
  height: 40%;
  background-color: white;
  border-right-style: solid;
  border-bottom-style: solid;
  border-width: 1px;
  transition-duration: 0.4s;
  overflow-y: scroll;
}
#commisionBox:hover {
  left: 0;
}
#commisionBox .comission {
  border-top-style: solid;
  padding: 5px;
  border-width: 1px;

}

#resultsBox {
  position: fixed;
  top: 0;
  right: -25%;
  width: 30%;
  height: 40%;
  background-color: white;
  border-left-style: solid;
  border-bottom-style: solid;
  border-width: 1px;
  transition-duration: 0.4s;
  overflow-y: scroll;
}
#resultsBox:hover {
  right: 0;
}
#resultsBox button {
  font-size: 1em !important;
  width: 80%;
  padding: 3px;
}
#resultsBox h2 {
  margin-bottom: 2px;
}

#newsBox {
  position: fixed;
  top: 10px;
  left: 10px;
  width: calc(100% - 22px);
  height: calc(100% - 22px);
  border-style: solid;
  border-width: 1px;
  z-index: 10;
  background-color: white;
  display: none;
}

button:not(.noDef) {
  padding: 8px;
  font-size: 1.5em;
  cursor: pointer;
  animation-name: buttonIdle;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  margin: 2px;
  outline: none !important; border: 2px solid #666666 !important;}
button:not(.noDef):hover {
  animation-name: buttonHover, buttonIdle;
  animation-duration: 3s;
  background-color: #dddddd;
}
.noDef {
  width: 100%;
  padding: 5px;
  font-size: 1.4em;
  cursor: pointer;
}

@keyframes buttonIdle {
  50% {font-size: 1.3em;}
  100% {font-size: 1.5em;}
}

@keyframes buttonHover {
  50% {background-color: #aaaaaa;}
  100% {background-color: #dddddd;}
}

@keyframes addCommIdle {
  50% {background-color: #cccccc;}
  100% {background-color: #eeeeee;}
}

@keyframes addCommHover {
  50% {background-color: #aaaaaa;}
  100% {background-color: #cccccc;}
}
