@font-face {
  font-family: 'Share Tech Mono';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/sharetechmono/v15/J7aHnp1uDWRBEqV98dVQztYldFcLowEA.ttf) format('truetype');
}

@charset "utf-8";
@import url("https://fonts.googleapis.com/css?family=Share+Tech+Mono");
html, body {
  height: 100%;
  margin: 0;
}

body {
  background: #0f3854;
  background: radial-gradient(ellipse at center, #0a2e38 0%, #000000 70%);
  background-size: 100%;
  font-family: "Share Tech Mono", monospace;
  color: #daf6ff;
  text-shadow: 0 0 20px #0aafe6, 0 0 20px rgba(10, 175, 230, 0);
}

p {
  margin: 0;
  padding: 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  color: #daf6ff;
  font-family: "Share Tech Mono", monospace;
  text-shadow: 0 0 20px #0aafe6, 0 0 20px rgba(10, 175, 230, 0);
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.text {
  color: #daf6ff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.text:hover {
  text-shadow: 0 0 20px #0aafe6, 0 0 20px rgba(10, 175, 230, 1);
  transform: translateY(-2px);
}

#clock {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#clock .time {
  letter-spacing: 0.05em;
  font-size: 80px;
  padding: 5px 0;
}

#clock .date {
  letter-spacing: 0.1em;
  font-size: 24px;
}

#clock .text {
  letter-spacing: 0.1em;
  font-size: 24px;
  padding-top: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#clock .text:hover {
  text-shadow: 0 0 20px #0aafe6, 0 0 20px rgba(10, 175, 230, 1);
  transform: translateY(-2px);
}

#clock .install-text {
  letter-spacing: 0.1em;
  font-size: 24px;
  padding-top: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#clock .install-text:hover {
  text-shadow: 0 0 20px #0aafe6, 0 0 20px rgba(10, 175, 230, 1);
  transform: translateY(-2px);
}

.docs-link {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #daf6ff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.docs-link:hover {
  text-shadow: 0 0 20px #0aafe6, 0 0 20px rgba(10, 175, 230, 1);
  transform: translateY(-2px);
}

.contributors {
  position: absolute;
  bottom: 40px;
  
  left: 150px;
  transform: translateX(-50%);
  color: #daf6ff;
  font-size: 14px;
}

.contributors a {
  color: #daf6ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contributors a:hover {
  text-shadow: 0 0 20px #0aafe6, 0 0 20px rgba(10, 175, 230, 1);
}