/**
* Default Landing Page
**/

body {
    background-color: #7f7b8f;
}

.whoops h1,h5 {
    text-transform: uppercase;
    text-shadow: 1px 1px 3px black;
}

.whoops h1 {
    font-size: 110px;
    font-weight: 700;
    text-align: center;
    color: white;
}

.whoops h5 {
    font-size: 50px;
    font-weight: 400;
    color: white;
}

.whoops p {
    font-size: 20px;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 1px black;
}

.whoops p > a {
    text-decoration: none;
    text-shadow: none;
    color: black;
    text-transform: uppercase;

}

.whoops p > a:hover {
    text-decoration: underline;
}


@media (max-width: 976px) {
    .whoops h1 {
        font-size: 75px;
        font-weight: 700;
        text-align: center;
    }

    .whoops h5 {
        text-align: center;
    }
}

p.ip {
    font-size: 18px;
    font-weight: 500;
    color: white;
    text-shadow: 1px 1px 1px black;
}

span.warn {
    color: red;
    font-size: 18px;
    text-shadow: 1px 1px 1px black;
}

p.note {
    color: white;
    text-shadow: 1px 1px 1px black;
}

/* Pulse Animation */
.pulse {
    -webkit-animation: color_change 2s infinite alternate;
    -moz-animation: color_change 2s infinite alternate;
    -ms-animation: color_change 2s infinite alternate;
    -o-animation: color_change 2s infinite alternate;
    animation: color_change 2s infinite alternate;
   }
   
   @-webkit-keyframes color_change {
    from { color: white; }
    to { color: red; }
   }
   @-moz-keyframes color_change {
    from { color: white; }
    to { color: red; }
   }
   @-ms-keyframes color_change {
    from { color: white; }
    to { color: red; }
   }
   @-o-keyframes color_change {
    from { color: white; }
    to { color: red; }
   }
   @keyframes color_change {
    from { color: white; }
    to { color: red; }
   }

.footer-distributed {
    width: 100%;
    text-align: left;
    padding: 45px 50px;
    background-color: #292c2f;
    color: white;
    position: absolute;
    bottom: 0;
}

.footer-distributed .footer-left p {
    margin: 0;
    font-size: 16px;
}

.footer-distributed .footer-right {
    float: right;
    margin-top: 6px;
    max-width: 180px;
}

.footer-distributed .footer-right a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: #33383b;
    border-radius: 2px;
    font-size: 20px;
    color: white;
    text-align: center;
    line-height: 35px;
    margin-left: 3px;
    transition: all .25s;
}

.footer-distributed .footer-right a:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.footer-distributed p.footer-links a:hover {
    text-decoration: none;
}

@media (max-width: 600px) {
    .footer-distributed .footer-left, .footer-distributed .footer-right {
      text-align: center;
    }
    .footer-distributed .footer-right {
      float: none;
      margin: 0 auto 20px;
    }
    .footer-distributed .footer-left p.footer-links {
      line-height: 1.8;
    }
  }