@import url('https://fonts.googleapis.com/css?family=Ubuntu:300,400,400i,500,500i,700,700i');

*{
    margin: 0px;
    padding: 0px;
}
body{
    overflow-x: hidden;
    background-color: #f5f5f5;
    font-family: Ubuntu, sans-serif;
    background: url(../layout/e30clubgeorgia.jpg) no-repeat center center;
    background-size: cover; 
}
/* ========== GLOBAL ========== */
::-webkit-input-placeholder { font-family: Ubuntu, sans-serif;  }
:-moz-placeholder { font-family: Ubuntu, sans-serif; } /* FF 4-18 */
::-moz-placeholder { font-family: Ubuntu, sans-serif; } /* FF 19+ */
:-ms-input-placeholder { font-family: Ubuntu, sans-serif; } /* IE 10+ */
/* RESET UNEXPECTED TRANSATION */
@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/* /RESET UNEXPECTED TRANSATION */
.bgvid { 
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: url(../layout/e30clubgeorgia.jpg) no-repeat;
    background-size: cover; 
}
video { display: block; }

/* ========== /GLOBAL ========== */
.logo{
    position: absolute;
    z-index: 3;
    top: 10px;
    left: 10px;
}
.container{
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
#home{
    background: transparent url('../layout/bg.png') repeat;

}
#home a{
    display: block; 
    margin-right: 10px;
    border-radius: 10px;
    overflow: hidden;
    height: 90px;
    opacity: 0.7;
    transition: all 0.3s;
}
#home a:hover{
    opacity: 1;
}


@media screen and (max-width: 967px) {
    .container{
        flex-direction: column;
    }
    #home a{
        margin-top: 10px;
    }
}