/* main */
html, body{
    width: 100%;
    height: 100%;
}

body {
    padding: 0;
    margin: 0;
    color: #fff;
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Audiowide', cursive;
}

.logo{
    display: block;
    position: fixed;
    bottom: 10px;
    right: 20px;
    font-size: 26px;
    line-height: 32px;
    background-image: url('logo.png');
    background-position: left center;
    background-repeat: no-repeat;
    padding: 15px 0 15px 50px;
}

.intro{
    display: block;
    position: fixed;
    text-align: center;
    top: 20%;
    left: 0;
    width: 100%;
    text-shadow: 0px 0px 5px #777;
}
.intro h1{
    font-size: 36px;
    line-height: 42px;
}
.intro p{
    font-size: 16px;
    line-height: 22px;
}
