body {
    margin: 0;
    padding: 0;
    background-image: url(../images/bg.jpg);
    background-size: cover;
    background-position: 70% 0%;
    font-family: 'Raleway', sans-serif;
    color: white;
}

header {
    height: 100px;
    position: relative;
}

header h1 {
    margin: 30px 50px;
    font-weight: 300;
    font-size: 40px;
    position: absolute;
    cursor: pointer;
}

#nav {
    font-size: 30px;
    margin: 0;
    position: absolute;
    right: -50px;
    top: 60%;
    transform: translate(-50%, -50%);
    text-shadow: 4px 8px 8px black;
    content: "";
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
}

#nav li {
    float: left;
    list-style: none;
    margin: 0px 10px;
    cursor: pointer;
    transition: all 0.3s;
}

#nav a {
    color: white;
    text-decoration: none;
}

footer {
    padding: 10px;
    width: 100%;
    background-color: black;
    position: fixed;
    bottom: 0;
    text-align: center;
}

footer a {
    color: white;
    margin: 0 5px;
}