html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: #070809;
  color: #f4f7f8;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  position: relative;
  width: 100%;
  max-width: 1024px;
  min-height: 768px;
  margin: 0 auto;
  padding: 20px 12px 8px;
  background: #070809;
}

.fullscreen-btn {
  position: absolute;
  top: 25px;
  right: 17px;
  z-index: 3;
  width: 24px;
  height: 20px;
  padding: 0;
  border: 1px solid #2d353b;
  border-radius: 5px;
  background: #11171a;
  color: #93a0a8;
  font-size: 9px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}

.fullscreen-btn.hidden {
  display: none;
}

.fullscreen-btn.dim {
  color: #5d676f;
  border-color: #252b30;
}

.clock-panel {
  position: relative;
  display: table;
  width: 100%;
  table-layout: fixed;
  height: 142px;
  margin-bottom: 8px;
  padding: 7px 14px;
  border: 1px solid #22272b;
  border-radius: 8px;
  background: #0d1012;
  background: -webkit-linear-gradient(top, #111518 0%, #0a0d0f 100%);
  background: linear-gradient(to bottom, #111518 0%, #0a0d0f 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 42px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.clock-panel:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  background: -webkit-linear-gradient(left, rgba(13, 16, 18, 0.99) 0%, rgba(13, 16, 18, 0.98) 25%, rgba(13, 16, 18, 0.84) 44%, rgba(13, 16, 18, 0.5) 68%, rgba(13, 16, 18, 0.18) 100%);
  background: linear-gradient(to right, rgba(13, 16, 18, 0.99) 0%, rgba(13, 16, 18, 0.98) 25%, rgba(13, 16, 18, 0.84) 44%, rgba(13, 16, 18, 0.5) 68%, rgba(13, 16, 18, 0.18) 100%);
}

.clock-left,
.date-cell,
.spotify-cell {
  position: relative;
  z-index: 2;
  display: table-cell;
  vertical-align: middle;
}

.clock-weather-bg {
  position: absolute;
  top: -14px;
  right: -16px;
  bottom: -14px;
  left: 24%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.78;
  background-image: url("/weather/clouds.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.weather-clear .clock-weather-bg {
  background-image: url("/weather/clear.jpg");
}

.weather-partly .clock-weather-bg {
  background-image: url("/weather/partly.jpg");
}

.weather-clouds .clock-weather-bg {
  background-image: url("/weather/clouds.jpg");
}

.weather-fog .clock-weather-bg {
  background-image: url("/weather/fog.jpg");
}

.weather-rain .clock-weather-bg {
  background-image: url("/weather/rain.jpg");
  background-position: center 43%;
}

.weather-storm .clock-weather-bg {
  background-image: url("/weather/storm.jpg");
  background-position: center 45%;
}

.weather-snow .clock-weather-bg {
  background-image: url("/weather/snow.jpg");
}

.clock-left {
  width: 46%;
}

.date-cell {
  width: 16%;
  padding-left: 14px;
  padding-right: 10px;
  border-left: 1px solid #252b30;
}

.spotify-cell {
  width: 38%;
  padding-left: 14px;
}

.clock-face {
  white-space: nowrap;
  color: #fbfdff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 116px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.9;
  text-shadow: 0 0 20px rgba(68, 215, 182, 0.13);
}

.clock-colon {
  color: #44d7b6;
  padding: 0 3px;
}

.seconds-wrap {
  display: inline-block;
  width: 82px;
  margin-left: 6px;
  vertical-align: baseline;
}

#clock-seconds {
  display: block;
  color: #ffbf69;
  font-size: 36px;
  line-height: 0.95;
  text-align: left;
}

#clock-ampm {
  display: block;
  margin-top: 3px;
  color: #d4dbe0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  text-align: left;
}

.date-line {
  color: #f7fafb;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.05;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.full-date-line {
  margin-top: 5px;
  color: #9da7af;
  font-size: 15px;
  line-height: 1.2;
}

.weather-line {
  margin-top: 5px;
  color: #d7fff7;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.overall-line {
  margin-top: 8px;
  color: #c4ccd2;
  font-size: 13px;
  font-weight: 500;
}

.spotify-panel {
  position: relative;
  display: block;
  width: 100%;
  min-height: 104px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid #283036;
  border-left: 4px solid #44d7b6;
  border-radius: 8px;
  background: #111518;
}

.spotify-panel.setup-card {
  border-left-color: #ffbf69;
}

.spotify-panel.has-art {
  background: #07090a;
}

.spotify-bg {
  position: absolute;
  top: -18px;
  right: -18px;
  bottom: -18px;
  left: -18px;
  z-index: 0;
  background-position: center center;
  background-size: cover;
  opacity: 0.82;
  -webkit-filter: blur(8px);
  filter: blur(8px);
}

.spotify-shade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: #111518;
  background: -webkit-linear-gradient(left, rgba(7, 9, 10, 0.88) 0%, rgba(7, 9, 10, 0.66) 50%, rgba(7, 9, 10, 0.44) 100%);
  background: linear-gradient(to right, rgba(7, 9, 10, 0.88) 0%, rgba(7, 9, 10, 0.66) 50%, rgba(7, 9, 10, 0.44) 100%);
  box-shadow: inset 0 0 46px rgba(0, 0, 0, 0.76);
}

.spotify-inner {
  position: relative;
  z-index: 2;
  display: table;
  width: 100%;
  table-layout: fixed;
}

.spotify-art,
.spotify-copy,
.spotify-controls {
  display: table-cell;
  vertical-align: middle;
}

.spotify-art {
  width: 86px;
  height: 84px;
  background: transparent;
  color: #44d7b6;
  font-size: 20px;
  font-weight: 800;
  line-height: 82px;
  text-align: center;
}

.spotify-art img {
  display: block;
  width: 82px;
  height: 82px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
}

.spotify-art .spotify-logo-placeholder {
  position: relative;
  display: block;
  width: 82px;
  height: 82px;
  margin: 0 auto;
  border-radius: 9px;
  overflow: hidden;
  background: #101417;
  background: -webkit-radial-gradient(50% 38%, ellipse, rgba(30, 215, 96, 0.2) 0%, rgba(30, 215, 96, 0.06) 36%, rgba(5, 7, 8, 0.98) 100%);
  background: radial-gradient(ellipse at 50% 38%, rgba(30, 215, 96, 0.2) 0%, rgba(30, 215, 96, 0.06) 36%, rgba(5, 7, 8, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0;
  line-height: 0;
}

.spotify-art .spotify-logo-placeholder:before {
  content: "";
  position: absolute;
  top: 19px;
  left: 19px;
  width: 44px;
  height: 44px;
  opacity: 0.58;
  background-image: url("/spotify-logo.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 44px 44px;
}

.spotify-art .spotify-logo-placeholder:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.82), inset 0 -18px 24px rgba(0, 0, 0, 0.42);
}

.spotify-copy {
  padding: 0 8px;
}

.spotify-kicker {
  color: #91a0aa;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.spotify-title {
  margin-top: 5px;
  color: #f7fafb;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.05;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spotify-artist {
  margin-top: 4px;
  color: #9da7af;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spotify-controls {
  width: 132px;
  text-align: right;
  white-space: nowrap;
}

.spotify-btn {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-left: 6px;
  padding: 0;
  border: 1px solid rgba(78, 92, 101, 0.78);
  border-radius: 50%;
  background: #0b0f11;
  background: -webkit-linear-gradient(top, rgba(22, 30, 34, 0.95) 0%, rgba(7, 10, 12, 0.98) 100%);
  background: linear-gradient(to bottom, rgba(22, 30, 34, 0.95) 0%, rgba(7, 10, 12, 0.98) 100%);
  color: #e9fff9;
  font-size: 0;
  line-height: 0;
  text-align: center;
  vertical-align: middle;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 16px rgba(0, 0, 0, 0.34);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.spotify-btn.main {
  width: 42px;
  height: 42px;
  color: #06110f;
  background: #44d7b6;
  background: -webkit-linear-gradient(top, #76e9cb 0%, #35d2ad 100%);
  background: linear-gradient(to bottom, #76e9cb 0%, #35d2ad 100%);
  border-color: #44d7b6;
  box-shadow: 0 0 18px rgba(68, 215, 182, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.spotify-btn.disabled {
  color: #58646c;
  background: #12171a;
  border-color: #252d32;
  box-shadow: none;
  opacity: 0.52;
}

.spotify-icon,
.spotify-icon:before,
.spotify-icon:after {
  position: absolute;
  display: block;
  content: "";
}

.spotify-icon-prev,
.spotify-icon-next {
  top: 11px;
  width: 16px;
  height: 12px;
}

.spotify-icon-prev {
  left: 9px;
}

.spotify-icon-next {
  right: 9px;
}

.spotify-icon-prev:before,
.spotify-icon-next:before {
  top: 0;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.spotify-icon-prev:before {
  left: 4px;
  border-right: 10px solid currentColor;
}

.spotify-icon-next:before {
  right: 4px;
  border-left: 10px solid currentColor;
}

.spotify-icon-prev:after,
.spotify-icon-next:after {
  top: 0;
  width: 3px;
  height: 12px;
  border-radius: 2px;
  background: currentColor;
}

.spotify-icon-prev:after {
  left: 0;
}

.spotify-icon-next:after {
  right: 0;
}

.spotify-icon-play {
  top: 13px;
  left: 16px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid currentColor;
}

.spotify-icon-pause {
  top: 12px;
  left: 14px;
  width: 14px;
  height: 18px;
}

.spotify-icon-pause:before,
.spotify-icon-pause:after {
  top: 0;
  width: 5px;
  height: 18px;
  border-radius: 2px;
  background: currentColor;
}

.spotify-icon-pause:before {
  left: 0;
}

.spotify-icon-pause:after {
  right: 0;
}

.spotify-link {
  display: inline-block;
  width: 70px;
  height: 30px;
  padding: 0;
  border: 1px solid #44d7b6;
  border-radius: 7px;
  background: #14201e;
  color: #dffff7;
  font-size: 12px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
}

.overall-dot,
.status-dot,
.chip-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 7px;
  border-radius: 50%;
  background: #7b838b;
  vertical-align: middle;
}

.online {
  background: #44d7b6;
  box-shadow: 0 0 16px rgba(68, 215, 182, 0.5);
}

.stale {
  background: #ffbf69;
  box-shadow: 0 0 16px rgba(255, 191, 105, 0.42);
}

.offline {
  background: #ff6262;
  box-shadow: 0 0 16px rgba(255, 98, 98, 0.34);
}

.servers {
  width: 100%;
  font-size: 0;
}

.server-card {
  display: inline-block;
  width: 49.2%;
  min-height: 0;
  margin-right: 1.6%;
  padding: 10px 11px 8px;
  vertical-align: top;
  border: 1px solid #252a2f;
  border-top: 4px solid #44d7b6;
  border-radius: 8px;
  background: #101315;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 14px 32px rgba(0, 0, 0, 0.25);
  font-size: 16px;
}

.server-card.last,
.server-card.second {
  margin-right: 0;
}

.placeholder {
  color: #79828a;
}

.server-head {
  display: table;
  width: 100%;
  table-layout: fixed;
  margin-bottom: 9px;
}

.server-title-cell,
.server-status-cell {
  display: table-cell;
  vertical-align: top;
}

.server-status-cell {
  width: 112px;
  text-align: right;
}

.server-name {
  color: #f7fafb;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
}

.server-state {
  margin-top: 5px;
  color: #9ca6ae;
  font-size: 12px;
  line-height: 1.2;
}

.state-pill {
  display: inline-block;
  min-width: 78px;
  padding: 6px 8px;
  border: 1px solid #2d3338;
  border-radius: 7px;
  color: #dce3e7;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.summary-grid {
  width: 100%;
  margin-bottom: 5px;
  font-size: 0;
}

.summary-box {
  display: inline-block;
  width: 32%;
  margin-right: 2%;
  padding: 5px 7px;
  border: 1px solid #252a2f;
  border-radius: 7px;
  background: #0c0f11;
  vertical-align: top;
}

.summary-box.last {
  margin-right: 0;
}

.summary-label,
.section-title,
.detail-label,
.widget-label,
.battery-label {
  color: #91a0aa;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.summary-label {
  display: block;
}

.summary-value {
  display: block;
  margin-top: 5px;
  color: #f8fbfc;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.quick-grid {
  width: 100%;
  margin-bottom: 6px;
  font-size: 0;
}

.quick-box {
  display: inline-block;
  width: 49%;
  margin-right: 2%;
  padding: 5px 7px;
  border: 1px solid #252a2f;
  border-radius: 7px;
  background: #0c0f11;
  vertical-align: top;
}

.quick-box.last {
  margin-right: 0;
}

.quick-value {
  display: block;
  margin-top: 5px;
  color: #f8fbfc;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.bar {
  width: 100%;
  height: 8px;
  margin-top: 6px;
  overflow: hidden;
  border-radius: 5px;
  background: #22282d;
}

.bar-fill {
  width: 0;
  height: 8px;
  border-radius: 5px;
  background: #44d7b6;
}

.battery-panel {
  display: table;
  width: 100%;
  table-layout: fixed;
  margin-bottom: 5px;
  padding: 5px 7px;
  border: 1px solid #252a2f;
  border-radius: 7px;
  background: #0c0f11;
}

.battery-label,
.battery-track,
.battery-value {
  display: table-cell;
  vertical-align: middle;
}

.battery-label {
  width: 64px;
}

.battery-track {
  height: 8px;
  overflow: hidden;
  border-radius: 5px;
  background: #22282d;
}

.battery-fill {
  display: block;
  height: 8px;
  border-radius: 5px;
  background: #44d7b6;
}

.battery-low .battery-fill {
  background: #ff6262;
}

.battery-value {
  width: 92px;
  padding-left: 8px;
  color: #f7fafb;
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.section-title {
  margin: 6px 0 4px;
}

.disk-list {
  min-height: 60px;
}

.disk-row {
  display: table;
  width: 100%;
  table-layout: fixed;
  margin-bottom: 3px;
}

.disk-name,
.disk-pct,
.disk-smart {
  display: table-cell;
  color: #dce3e7;
  font-size: 12px;
  font-weight: 600;
  vertical-align: middle;
}

.disk-pct {
  width: 44px;
  text-align: right;
}

.disk-smart {
  width: 62px;
  padding-left: 12px;
  text-align: right;
}

.disk-bar-cell {
  display: table-cell;
  width: 126px;
  padding: 0 8px;
  vertical-align: middle;
}

.warn-disk .disk-name,
.warn-disk .disk-pct {
  color: #ffbf69;
}

.critical-disk .disk-name,
.critical-disk .disk-pct,
.critical-disk .disk-smart {
  color: #ff8c8c;
}

.online-text {
  color: #75dfc7;
}

.stale-text {
  color: #ffbf69;
}

.offline-text {
  color: #ff8c8c;
}

.lower-widgets-title {
  margin-top: 5px;
}

.widget-grid {
  width: 100%;
  margin: 8px 0 7px;
  font-size: 0;
}

.small-widget {
  display: inline-block;
  width: 32%;
  min-height: 62px;
  margin-right: 2%;
  padding: 8px 9px;
  overflow: hidden;
  vertical-align: top;
  border: 1px solid #252a2f;
  border-left: 4px solid #44d7b6;
  border-radius: 7px;
  background: #0c0f11;
}

.small-widget:nth-child(3n) {
  margin-right: 0;
}

.plug-widget {
  position: relative;
  padding-right: 58px;
}

.plug-btn {
  position: absolute;
  right: 8px;
  bottom: 9px;
  width: 43px;
  height: 26px;
  padding: 0;
  border: 1px solid #44d7b6;
  border-radius: 7px;
  background: #14201e;
  color: #dffff7;
  font-size: 11px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}

.plug-btn.disabled {
  border-color: #2d343a;
  background: #12171a;
  color: #59646c;
}

.online-edge {
  border-left-color: #44d7b6;
}

.stale-edge {
  border-left-color: #ffbf69;
}

.offline-edge {
  border-left-color: #ff6262;
}

.widget-label,
.widget-value,
.widget-meta {
  display: block;
}

.widget-value {
  margin-top: 5px;
  color: #f7fafb;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.widget-meta {
  margin-top: 4px;
  color: #9da7af;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.detail-table {
  width: 100%;
  border-top: 1px solid #252a2f;
  padding-top: 6px;
  font-size: 0;
}

.detail {
  display: inline-block;
  width: 33.3%;
  margin-bottom: 6px;
  vertical-align: top;
}

.detail-label {
  display: block;
}

.detail-value {
  display: block;
  margin-top: 4px;
  color: #e7ecef;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.15;
  word-wrap: break-word;
}

.network-panel {
  display: table;
  width: 100%;
  table-layout: fixed;
  min-height: 34px;
  margin-bottom: 2px;
  padding: 5px 7px;
  border: 1px solid #242a2f;
  border-radius: 7px;
  background: #0c0f11;
}

.network-lanes,
.network-spark {
  display: table-cell;
  vertical-align: middle;
}

.network-lanes {
  width: 64%;
  padding-right: 10px;
}

.network-spark {
  width: 36%;
  height: 24px;
  text-align: right;
  white-space: nowrap;
}

.network-lane {
  display: table;
  width: 100%;
  table-layout: fixed;
  margin-bottom: 3px;
}

.network-lane:last-child {
  margin-bottom: 0;
}

.network-label,
.network-track,
.network-rate {
  display: table-cell;
  vertical-align: middle;
}

.network-label {
  width: 26px;
  color: #91a0aa;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.network-track {
  height: 7px;
  overflow: hidden;
  border-radius: 4px;
  background: #22282d;
}

.network-fill {
  display: block;
  width: 0;
  height: 7px;
  border-radius: 4px;
}

.network-rate {
  width: 74px;
  padding-left: 7px;
  color: #e7ecef;
  font-size: 11px;
  font-weight: 600;
  text-align: right;
}

.spark-bar {
  display: inline-block;
  width: 6px;
  min-height: 3px;
  margin-left: 3px;
  border-radius: 3px 3px 0 0;
  vertical-align: bottom;
  opacity: 0.95;
}

.local-services,
.action-services {
  min-height: 42px;
  font-size: 0;
}

.service-chip {
  display: inline-block;
  max-width: 31.7%;
  margin: 0 1.6% 5px 0;
  padding: 4px 6px;
  overflow: hidden;
  border: 1px solid #2a3035;
  border-radius: 7px;
  background: #0c0f11;
  color: #dce3e7;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: top;
}

.service-action {
  display: inline-block;
  width: 32%;
  height: 27px;
  margin: 0 2% 5px 0;
  padding: 4px 5px;
  overflow: hidden;
  vertical-align: top;
  border: 1px solid #2a3035;
  border-radius: 7px;
  background: #0c0f11;
}

.service-action:nth-child(3n) {
  margin-right: 0;
}

.service-action-name {
  display: inline-block;
  width: 49px;
  color: #e7ecef;
  font-size: 10px;
  font-weight: 600;
  line-height: 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}

.restart-btn {
  float: right;
  width: 45px;
  height: 18px;
  padding: 0;
  border: 1px solid #303940;
  border-radius: 6px;
  background: #12181b;
  color: #dce3e7;
  font-size: 10px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}

.restart-btn.disabled {
  color: #59646c;
  border-color: #252b30;
}

.chip-dot {
  width: 8px;
  height: 8px;
  margin-right: 5px;
}

.error-line {
  min-height: 13px;
  margin-top: 3px;
  color: #ff9b9b;
  font-size: 11px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer {
  position: absolute;
  right: 12px;
  bottom: 3px;
  margin-top: 0;
  color: #707a82;
  font-size: 11px;
  text-align: right;
}

@media (max-width: 800px) {
  .page {
    min-height: 0;
    padding: 12px;
  }

  .clock-panel,
  .clock-left,
  .date-cell,
  .spotify-cell {
    display: block;
    width: 100%;
    height: auto;
  }

  .date-cell,
  .spotify-cell {
    margin-top: 12px;
    padding-left: 0;
    border-left: 0;
  }

  .clock-face {
    font-size: 82px;
  }

  .seconds-wrap {
    width: 78px;
    margin-left: 8px;
  }

  #clock-seconds {
    font-size: 32px;
  }

  #clock-ampm {
    font-size: 20px;
  }

  .server-card {
    display: block;
    width: 100%;
    min-height: 0;
    margin-right: 0;
    margin-bottom: 14px;
  }
}
