html {
  height: 100%;
  padding: 0; }

body {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  color: #999;
  margin: 0;
  padding: 0;
  height: 100%; }

.header {
  padding: 10px 0 30px; }

h1 {
  text-align: center;
  font-weight: 700;
  font-size: 36px;
  line-height: 100%; }
  h1 span {
    font-size: 15px; }

p {
  font-size: 16px; }

.floors {
  background-color: #F0F1F4;
  height: calc(100% - 160px);
  padding: 30px 20px;
  border-radius: 30px 30px 0px 0px; }

.raspberry-data {
  padding: 0px 20px;
  border-radius: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.1); }
  .raspberry-data pre {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 400;
    font-style: normal;
    margin: 10px 0; }
    .raspberry-data pre.floor {
      font-weight: 700;
      font-size: 36px;
      line-height: 1em; }
  .raspberry-data .brightness {
    display: none; }
  .raspberry-data .timestamp {
    font-size: 3vw; }
  .raspberry-data .status {
    font-weight: 500;
    font-size: 48px;
    text-align: right;
    display: flex;
    align-items: center;
    line-height: 48px; }
    .raspberry-data .status span {
      padding: 3px 5px 8px 5px;
      border-radius: 10px; }
    .raspberry-data .status.open span {
      background-color: #FCB031;
      color: #FFF; }
    .raspberry-data .status.closed span {
      background-color: #21CC9E;
      color: #FFF; }
    .raspberry-data .status.check span {
      background-color: #fc5e59;
      color: #FFF; }
  .raspberry-data.woman {
    background-color: #FFF;
    color: #999; }
  .raspberry-data.man {
    background-color: #666;
    color: #FFF; }

@media screen and (min-width: 1366px) {
  .floors {
    display: flex;
    justify-content: space-evenly; }

  .raspberry-data {
    width: calc((100% - 60px)/7);
    margin: 0 15px;
    height: fit-content; } }
@media screen and (min-width: 768px) and (max-width: 1365px) {
  .floors {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: flex-start; }

  .raspberry-data {
    width: calc((100% - 80px)/4);
    margin: 0 5px 10px;
    padding: 0px 10px 0 20px; } }
@media screen and (max-width: 767px) {
  .floors {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: flex-start; }

  .raspberry-data {
    width: calc((100% - 20px)/2);
    margin: 0 5px 10px;
    padding: 0px 15px; } }
.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 16px;
  background-color: #FF694E;
  color: #FFF;
  font-weight: 500;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center; }
