.title {
  color: #fefefe;
  position: fixed;
  margin: 0;
  padding: 0;
  top: 1rem;
  left: 1rem;
  width: 100%;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48px;
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fefefe;
  @media (max-width: 768px) {
    height: max-content;
    flex-direction: column;
  }
}
#timerDisplay {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 33.333vw;
  transform: translate(-50%, -50%);
  color: #fefefe;
  font:
    500 12vw system-ui,
    sans-serif;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

.pomodoro {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.pomodoro select,
.pomodoro button {
  height: 24px;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 3px;
  background: rgb(20 26 30 / 70%);
  color: #fefefe;
  font:
    11px system-ui,
    sans-serif;
}

.pomodoro select {
  padding: 0 4px;
}

.pomodoro button {
  padding: 0 7px;
  cursor: pointer;
}

.pomodoro button:hover,
.pomodoro select:hover {
  background: rgb(70 82 88 / 80%);
}

.pomodoro button:focus-visible,
.pomodoro select:focus-visible {
  outline: 1px solid rgb(255 255 255 / 75%);
  outline-offset: 1px;
}
.controller {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 16px;
  padding: 0 16px;
}
.play {
  cursor: pointer;
  width: 24px;
  height: 24px;
}
.license {
  width: 200px;
  position: relative;
  height: 24px;
  padding: 0 16px;
  @media (max-width: 768px) {
    position: absolute;
    bottom: 16px;
    left: 0;
  }
}

.license > svg {
  display: block;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.license .content {
  display: none;
  position: absolute;
  left: 8px;
  bottom: 28px;
  width: max-content;
  max-width: min(320px, calc(100vw - 32px));
  padding: 10px 12px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 6px;
  background: rgb(18 24 28 / 88%);
  box-shadow: 0 4px 16px rgb(0 0 0 / 24%);
  color: #fefefe;
  font:
    12px/1.5 system-ui,
    sans-serif;
}

.license.open .content {
  display: block;
}

.license .content h3 {
  margin: 0 0 6px;
  font-size: 12px;
}

.license .content section {
  display: grid;
  gap: 2px;
}

.license .content articles {
  display: block;
  white-space: nowrap;
}

.license .content a {
  color: inherit;
}

.license .content a:hover {
  color: #b9e8ff;
}
.volume {
  width: 112px;
  height: 4px;
  cursor: pointer;
  accent-color: #fefefe;
  opacity: 0.82;
}

.hide {
  display: none;
}
