 body {
   margin: 0;
   min-height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   background: rgb(25, 0, 37);
   color: #e6e6eb;
   text-align: center;
   font-family: "Cabin";
 }

 main {
   max-width: 560px;
   padding: 2rem;
 }

 h1 {
   margin: 0 0 0.75rem 0;
   font-size: 2.25rem;
   font-weight: 600;
 }

 p {
   margin: 0 0 1.5rem 0;
   color: #9aa0aa;
   line-height: 1.6;
 }

 nav {
   display: flex;
   justify-content: center;
   gap: 1.25rem;
   flex-wrap: wrap;
 }

 a {
   color: #e6e6eb;
   text-decoration: none;
   border-bottom: 1px solid rgba(230, 230, 235, 0.25);
   padding-bottom: 2px;
 }

 a:hover {
   border-color: #e6e6eb;
 }

.service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 0.9rem 1.25rem;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}


.name {
  font-size: 1rem;
}

.status {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #9aa0aa;
}

.status.up {
  background: #7ee787;
}

.status.down {
  background: #ff7b72;
}

.status.unknown {
  background: #9aa0aa;
}
