* {
  box-sizing: border-box;
}
body {
  font-family: "Courier Prime", serif;
  font-size: 16px;
  text-align: center;
  /* color: aliceblue; */
  height: 100vh;
  color: rgb(40, 40, 40);
}
nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 20px;
}
.brand {
  color: rgb(40, 40, 40);
  text-decoration: none;
  font-size: 1.5rem;
}

.nav-item {
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: rgb(40, 40, 40);
}
.nav-item:hover {
  background: rgb(59, 220, 220);
  padding: 10px 20px;
  border-radius: 5px;
  color: rgb(40, 40, 40);
}

h1 {
  font-size: 3rem;
  padding-top: 15vh;
}
#apistatus {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.api-status {
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
}
.api-status img {
  margin-right: 8px;
}
.online {
  color: #00b900;
  border: 1px dashed #00b900;
}
.offline {
  color: #fc0000;
  border: 1px dashed #fc0000;
}
footer {
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  color: rgba(40, 40, 40, 0.15);
}

@media screen and (max-width: 768px) {
  nav {
    flex-direction: column;
  }
  .brand {
    margin-bottom: 20px;
  }
}
