body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(0deg, rgba(50, 50, 50, 1) 23%, rgba(100, 100, 100, 1) 100%);
  background-repeat: no-repeat;
}

.navbar {
  position: sticky;
  top: 0;
  background-color: #000000;
  border-bottom: 5px solid #fff;
  padding: 0;
  transition: 0.3s ease;
  overflow: hidden;
  z-index: 1000;
}

.navbar::after {
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 10px;
}

.navbar a {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  text-align: center;
}

.navbar a:hover {
  background-color: #575757;
}

.status-span {
  display: flex;
  flex-direction: column;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  padding: 10px;
  width: 100%;
  height: 190px;
  background-image: linear-gradient(45deg, rgba(100, 100, 100, 0.5) 25%, rgba(130, 130, 130, 0.5) 25%, rgba(130, 130, 130, 0.5) 50%, rgba(100, 100, 100, 0.5) 50%, rgba(100, 100, 100, 0.5) 75%, rgba(130, 130, 130, 0.5) 75%, rgba(130, 130, 130, 0.5) 100%);
  background-size: 56.57px 56.57px;
  margin: 0;
}

.status-span h3 {
  user-select: none;
  font-family: IBM Plex Mono, monospace;
  font-weight: lighter;
  z-index: 10000;
  color: white;
  margin-top: 100px;
  margin-bottom: 0;
}

.status-span h1 {
  user-select: none;
  font-family: IBM Plex Mono, monospace;
  font-size: 50px;
  color: white;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #aaa;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #666;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #888;
}