/* styles.css */
:root {
  --char-width: 3rem;
  --char-padding: 5px;
  --char-margin: 2px;
}

html {
  font-family: Hack, monospace;
}

body {
  background-color: #e4d0d0;
  height: 100%;
}

@media (min-width: 900px) {
  #header > h1 {
    font-size: 4.5rem !important;
  }

  #header > p {
    font-size: 2.25rem !important;
  }

  :root {
    --char-width: 2.25rem;
    --char-padding: 3px;
    --char-margin: 1.5px;
  }
}

#header > h1 {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 6em;
}

#header > p {
  text-align: center;
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 2.5rem;
}

#info {
  display: flex;
  text-align: center;
  width: 90%;
  margin: 8px auto auto;
  font-size: 2rem;
}

#clients, #characters {
  flex: 1;
}

hr {
  width: 95%;
}

#content {
  width: 90%;
  margin: 32px auto;
  padding-bottom: 7.14286vh;
}

#char-input {
  position: absolute;
  z-index: -1;
  width: calc(var(--char-width) / 2);
  height: calc((var(--char-width)  + 10px) / 2);
  border: hidden;
  border-radius: 10%;
}

#content > span {
  display: flex;
}

.char {
  font-size: var(--char-width);
  width: var(--char-width);
  height: calc(var(--char-width)  + 10px);
  text-align: center;
  padding: var(--char-padding);
  margin: var(--char-margin);
  cursor: pointer;
  background-color: #998080;
  border-radius: 10%;
}

.focused {
  background-color: #795c5c !important;
}

.char:hover {
  background-color: #d5b4b4;
}

#menu-bar {
  position: fixed;
  display: flex;
  background-color: #998080;
  width: 100%;
  height: 7.14286vh;
  min-height: 50px;
  top: 92.5vh;
  left: 0;
}

#menu-bar > div {
  cursor: pointer;
  border-radius: 10px;
  flex: 1;
  align-content:  center;
  height: 100%;
  margin-bottom: auto;
}

#menu-bar > div:first-child {
  cursor: default;
  background-color: #998080 !important;
}

#menu-bar > div:last-child {
  border-radius: 10px 0 0 10px;
}

#menu-bar > div:hover {
  background-color: #d5b4b4;
}

#menu-bar > .menu-bar-container:active {
  background-color: #795c5c !important;
}

.menu-bar-container > img {
  display: block;
  height: 50%;
  margin-left: auto;
  margin-right: auto;
}

#clock-container {
  display: flex;
}

#clock-container > img {
  aspect-ratio: 1;
  display: block;
  height: 50%;
  margin-left: auto;
  transform: translateY(50%);
}

#clock-container > p {
  display: block;
  margin: auto auto auto 15px;
  font-size: 3vh;
}
