* {
  margin: 0;
}

a {
  color: #fff;
}

a:hover {
  text-decoration: none;
}

body {
  background-color: #221e58;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url('../images/background.jpg') no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#main {
  padding: 30px;
  position: absolute;
  top: 20px;
  margin: auto auto;
}

#main h1,
#main h2 {
  text-align: center;
  color: #fff;
  font-family: sans-serif;
  margin: 0;
}

#main h1 {
  font-size: 70px;
}

#main h2 {
  margin-bottom: 12px;
}

#main h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.container {
  color: #fff;
  font-family: sans-serif;
  font-size: 20px;
  margin-top: 40px;
}

#monitors {
  margin: auto auto;
  background-color: rgba(255, 255, 255, 0.13);
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 40px;
  width: 310px;
}

.bullet {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  display: inline-block;
  margin-right: 12px;
  border-radius: 50%;
}

.paused {
  background-color: rgb(241, 218, 143);
}

.up {
  background-color: lawngreen;
}

.down {
  background-color: red;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.loader {
  margin: auto auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

ul {
  list-style: square;
}

li {
  margin-bottom: 12px;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
