/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

/*------------------------------------*/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/*-------------------------------------*/

html {
    margin: 0;
    padding: 0;
    height: 100%;
}
body {
    margin: 0;
    padding: 0;
    background-origin: border-box;
    background: url("../assets/grassyField.png") no-repeat center center;
    background-size: cover;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
@font-face {
    font-family: "Magistral";
    src: url(../fonts/MagistralC-Bold.otf);
}
@font-face {
    font-family: "Calibri";
    src: url(../fonts/calibri.ttf);
}
.SupportWidget {
    position: absolute;
    right: 5px;
    top: 5px;
    color: #54534a;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 700;
}
.logo {
    margin: 0 auto 20px;
    font-family: Magistral, sans-serif;
    font-size: 3em;
    color: #54534a;
    letter-spacing: 1px;
    line-height: .9em;
    /*text-shadow: 1px 3px 3px rgba(6, 6, 6, 0.51);*/
    font-weight: 100;
}
.logo img {
    height: .73em;
}
.jumbotron {
    margin: 28vh auto 0;
    width: 40vw;
    text-align: center;
}
.info {
    width: 30vw;
    margin: 0 auto;
    text-align: center;
    color: #54534a;
    font-family: 'Open Sans', sans-serif;
}
.button {
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    background-color: #edae44;
    color: #ffffff;
    font-family: "Calibri", sans-serif;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.55);
    margin-bottom: 20px;
    display: block;
    width: 15vw;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
#serverName {
    font-family: "Calibri", sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    color: #54534a;
}
#cat {
    margin: 0 auto;
    max-width: 30vw;
}
#cat > img {
    max-width: 30vw;
}
@media (max-width: 1350px) {

}
@media (max-width: 900px) {
    .jumbotron {
        width: 100%;
    }
    .button {
        width: 30vw;
    }
}
@media (max-width: 550px) {
    .logo {
        font-size: 2em;
    }
    .logo img {
        display: none;
    }
    .info {
        width: 100%;
    }
    .button {
        padding: 15px 25px;
        text-wrap: avoid;
        width: 100%;
        font-size: 1em;
        width: 80vw;
    }
}