@import url(https://fonts.googleapis.com/css?family=Montserrat:100,300);
body {
    background-color: #f5f8fa;
    font-family: "Montserrat", sans-serif;
    font-weight: 100;
}

.box-logo {
    position: fixed;
    bottom: 10px;
    font-weight: 300;
    left: 20px;
}

.box {
    text-align: center;
    margin-top: 100px;
    line-height: 60px;
}

.header {
    font-size: 24px;
}

.table {
    margin-left: auto;
    margin-right: auto;
    width: 40%;
    text-align: center;
    margin-top: 30px;
}

.table td {
    padding-top: 30px !important;
}

.box-header {
    margin-top: 50px;
    text-align: center;
}

.box-header div {
    display:inline-block;
    margin-bottom: 20px;
    border: 1px solid #ccc;
}

.box-links {
    text-align: center;
}

.box-links div {
    display:inline-block;
    width: 150px;
    padding-top: 20px;
    border: 1px solid #ccc;
}

.box-links a {
    color: #0000FF !important;
}

.for-dev {
    width: 150px;
}

.for-devops {
    width: 300px;
}

.signature {
    font-style: italic;
    font-size: 0.9rem;
    position: fixed;
    bottom: 0;
    font-weight: 300;
    right: 30px;
}

.loading-dots .dot {
    display: inline;
    margin-left: 0.1em;
    margin-right: 0.1em;
    opacity: 0;
    -webkit-animation: showHideDot 1.0s ease-in-out infinite;
            animation: showHideDot 1.0s ease-in-out infinite;
}
.loading-dots .dot.one {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
}
.loading-dots .dot.two {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
}
.loading-dots .dot.three {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
}

@-webkit-keyframes showHideDot {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes showHideDot {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}