@font-face {
    font-family: 'RobotoMono';
    src: url('../fonts/RobotoMono-Thin.ttf');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'RobotoMono';
    src: url('../fonts/RobotoMono-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'RobotoMono';
    src: url('../fonts/RobotoMono-Bold.ttf');
    font-weight: 600;
    font-style: normal;
}
body {
    font-family: 'RobotoMono';
    background-color: #35383d;
    color: #FFF;
}

@media (min-width: 768px) {
    body {
        padding-bottom: 30px;
    }
}


.navbar-brand {
    margin-right: 0;
}

.navbar-brand img {
    height: 21px;
}

.navbar-dark {
    padding-top: 35px;
    padding-bottom: 35px;
}

.navbar-dark .navbar-text {
    color: #ffffff;
    opacity: 1;
    padding: 0 20px;
    border-right: 1px solid #ffffff;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}

.navbar-dark .navbar-text:last-child {
    border-right: 0;
}

@media (max-width: 767px) {
    .navbar-dark {
        padding-bottom: 0;
    }
}

.content-logo {
    width: 10%;
}

.page-title {
    font-size: 80px;
    font-weight: bold;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.page-title-2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.page-title-3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 6px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .page-title {
        font-size: 35px;
        margin-bottom: 14px;
        text-transform: uppercase;
    }

    .page-title-2 {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 6px;
        text-transform: uppercase;
    }

    .page-title-3 {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 6px;
        text-transform: uppercase;
    }
}

.page-description {
    max-width: 465px;
    font-size: 18px;
    margin-bottom: 59px;
    font-weight: 400;
}

.page-description span {
    color: #A8A8A8;
    display: block;
    width: 100%;
    font-size: 16px;
    /* margin-bottom: 59px; */
}

@media (max-width: 767px) {
    .page-description {
        font-size: 14px;
    }

    .page-description span {
        font-size: 12px;
    }
}

p {
    font-size: 14px;
    margin-bottom: 21px;
}

.box{
  width: 250px;
  height: 50px;
  margin-top: 25px;
}

.box div.stattext{
  width: 110px;
  height: 40px;
  font-weight: 400;
  font-size: 14px;
  line-height: 40px;
  color: rgba(149,244,118,1);
  float: left;
  padding-left: 15px;
}

.server{
  width: 110px;
  height: 40px;
  background: #161617;
  border-radius: 10px;
  float: left;
}

.server ul{
  margin: 0;
  padding: 0;
  list-style: none;
}

.server:first-child ul li{
  width: 6px;
  height: 6px;
  float: left;
  margin-left: 10px;
  margin-top: 17px;
  background: rgba(149,244,118,0.6);
}

.server ul li:first-child{
  margin-left: 17px;
  -webkit-animation: pattern1 0.14s linear infinite;
}

.server ul li:nth-child(2){
  -webkit-animation: pattern1 0.14s 0.02s linear infinite;
}

.server ul li:last-child{
  -webkit-animation: pattern1 0.14s 0.05s linear infinite;
}

@-webkit-keyframes pattern1{
  0%{
    background: rgba(149,244,118,0.6);
  }
  100%{
    background: rgba(149,244,118,1);
  }
}