/**************/
/* Typography */
/**************/
@font-face {
    font-family: Futura;
    src: url("../futura/futura-book-font.ttf");
}
h1, a {
    font-family: Futura;
    text-decoration: none;
    text-transform: uppercase;
}
h1 {
    font-size: 500%;
    font-weight: normal;
    color: white;
    margin-top: 0;
}
/**********/
/* Layout */
/**********/
body {
    background: url("../landing/tl-evening_2_landing_page.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
main {
    position: fixed;
    margin-left: 0px;
    padding-top: 15%;
}
img {
    width: 35%;
}
/****************/
/* Enter Button */
/****************/
.enterButton {
    font-size: 150%;
    color: black;
    background-color: white;
    padding: 3%;
}
.enterButton:hover {
    -webkit-filter: brightness(70%);
    transition: all .5s ease;
}
/**************/
/* Responsive */
/**************/
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    main {
        margin-left: 50%;
    }
} 