@font-face {
  font-display: block;
  font-family: "Font Awesome 6 Free";
  src: url("./webfonts/fa-regular-400.woff2") format("woff2"),
    url("./webfonts/fa-regular-400.ttf") format("ttf");

}

.shell-window {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  display: none;
  z-index: 999;
}

.shell-window>div {
  background-color: rgb(25, 25, 25);
  width: 50vw;
  min-width: 380px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15vh;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgb(77, 77, 77);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
}

.shell-window .title {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #EAD285;
  color: #EAD285;
}

.shell-window table{
  color: black;
}

/* Powered Clock */
.clock {
  &-day {
    &:before {
      content: var(--timer-day);
    }
  }

  &-hours {
    &:before {
      content: var(--timer-hours);
    }
  }

  &-minutes {
    &:before {
      content: var(--timer-minutes);
    }
  }

  &-seconds {
    &:before {
      content: var(--timer-seconds);
    }
  }
}

.clock-container {
  display: flex;
  align-items: center;
  justify-content: center;

  padding-left: 5%;
  padding-right: 5%;
}

.clock-col{
  position: relative;

  flex: 1;
  text-align: center;
}

.clock-label{
  font-size: 0.5rem;
  color: darkgrey;
}

.clock-timer{
  font-weight: bolder;
  font-family: Montserrat,"sans-serif";
  font-size: 0.7rem;
  color: whitesmoke;
  margin: 0;
}

.clock-col:not(:last-child)::after {
  font-weight: bolder;
  content: ":"; /* 分隔符内容 */
  position: absolute;
  right: 0; /* 分隔符位于 item 的右侧 */
  top: 20%; /* 分隔符垂直居中 */
  transform: translateY(-50%); /* 通过 transform 调整分隔符的垂直位置 */
}