@font-face {
    font-family: "Corbert";
    src: url(../fonts/corbert-regular.otf) format("truetype");
}
@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}
    40% {-webkit-transform: translateY(-10px);}
    60% {-webkit-transform: translateY(-5px);}
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

body {
    margin: 0px;
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgb(40, 40, 40);
    font-family: "Corbert", Arial, tahoma, sans-serif;
}
.animated {
    -webkit-animation-name: bounce;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: 10;
    -webkit-animation-timing-function: ease-out;
    -webkit-animation-fill-mode: forwards;
    animation-name: bounce;
    animation-duration: 3s;
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
#page-wrapper {
    display: table-cell;
    vertical-align: middle;
    min-width: 400px;
}
#page {
    margin-left: auto;
    margin-right: auto;
}
#logo {
    background-image: url(../img/sw_logo_ftcg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 120px;
}
#site-name {
    margin: 20px 30px;
    text-transform: uppercase;
    color: #b3b3b3;
    text-align: center;
    letter-spacing: 1px;
}
#navigation ul {
    list-style-type: none;
    text-align: center;
    text-transform: uppercase;
    padding: 0px;
}
#navigation li {
    display: inline-block;
    margin: 0 7px;
}
#navigation li a {
    display: block;
    color: #a69257;
    font-size: 16px;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 7px 14px;
    border: 1px solid #a69257;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#navigation li a:hover{
    border-color: #BDAD3D;
    color: #BDAD3D;
}
