@import url("https://fonts.googleapis.com/css?family=Lato:300,300italic");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css");
* {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: default;
}
.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}
/*
 * Globals
 */

/* Links */
a,
a:focus,
a:hover {
    color: #fff;
}

/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
    color: #333;
    text-shadow: none; /* Prevent inheritance from `body` */
    background-color: #fff;
    border: .05rem solid #fff;
}


/*
 * Base structure
 */

html,
body {

    background: url(../img/server.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;


}

body {
    display: -ms-flexbox;
    display: flex;
    color: #fff;
    text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
    box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}

.cover-container {
    max-width: 42em;
}


/*
 * Header
 */
.masthead {
    margin-bottom: 2rem;
}

.masthead-brand {
    margin-bottom: 0;
}

.nav-masthead .nav-link {
    padding: .25rem 0;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    background-color: transparent;
    border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
    border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
    margin-left: 1rem;
}

.nav-masthead .active {
    color: #fff;
    border-bottom-color: #fff;
}

@media (min-width: 48em) {
    .masthead-brand {
        float: left;
    }
    .nav-masthead {
        float: right;
    }
}



/*
 * Cover
 */
.cover {
    padding: 0 1.5rem;
}
.cover .btn-lg {
    padding: .75rem 1.25rem;
    font-weight: 700;
}


/*
 * Footer
 */
.mastfoot {
    color: rgba(255, 255, 255, .5);
}
html {
  font-size: 62.5%;
  color: #c1c6cb;
  background-color: #15202e;
}

body {
  padding: 20px 50px;
}

body::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #110d0d;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

.dashboard {
  display: block;
  max-width: 1024px;
  margin: 0 auto;
}
.dashboard-header {
  display: flex;
  align-items: center;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
}
.dashboard-title {
  flex: 1;
  font-size: 2.5rem;
}
.dashboard-clock {
  display: flex;
  align-items: center;
}
.dashboard-clock-digital {
  font-weight: bold;
  font-size: 2.5rem;
}
.dashboard-clock-binary {
  margin-left: 8px;
  border-collapse: separate;
}
.dashboard-clock-binary td {
  height: .4rem;
  width: .4rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}
.dashboard-clock-binary .num1 {
  background-color: #2eb35a;
}

.server {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.1);
}
.server-icon {
  display: inline-block;
  font-size: 2.5rem;
  margin: 0 2rem;
}
.server-details {
  flex: 1;
  display: block;
  list-style: none;
    text-align: left;
  margin-left: 30px;
  padding: 0;
}
.server-details li {
  display: block;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #7e8794;
}
.server-details li:last-child .data {
  font-weight: normal;
  color: rgba(230, 245, 255, 0.32);
}
.server-details .data {
  display: block;
  margin: -1.7rem 0 0 0;
  padding: 0 1rem 0 0;
  font-weight: 600;
  text-align: right;
    width: 300px;
  color: #c1c6cb;
}
.server-details .signal {
  color: #2eb35a;
}
.server-details .signal::before {
  content: '';
  display: inline-block;
  width: .6rem;
  height: .6rem;
  background-color: currentColor;
  border-radius: 50%;
  margin-right: .5rem;
  margin-top: -.2rem;
  vertical-align: middle;
}
.server-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
  grid-gap: 2rem;
}
.server.has-failed {
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  border-color: #d22c32;
  -webkit-animation: alertblink 2s ease-in-out infinite;
          animation: alertblink 2s ease-in-out infinite;
}
.server.has-failed .server-icon,
.server.has-failed .signal {
  color: #d22c32;
}
.server.has-failed:hover {
  background-color: rgba(210, 44, 50, 0.2);
  -webkit-animation: none;
          animation: none;
}

@-webkit-keyframes alertblink {
  0% {
    background: rgba(210, 44, 50, 0);
  }
  50% {
    background: rgba(210, 44, 50, 0.2);
  }
  100% {
    background: rgba(210, 44, 50, 0);
  }
}

@keyframes alertblink {
  0% {
    background: rgba(210, 44, 50, 0);
  }
  50% {
    background: rgba(210, 44, 50, 0.2);
  }
  100% {
    background: rgba(210, 44, 50, 0);
  }
}
