a, a:hover {
    color: #fff;
}

a:hover {
    cursor: pointer;
    text-decoration: none;
}

body {
    background-color: #000;
    background-image: url(../img/background.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: 100%;
    color: #fff;
    font-family: 'Titillium Web', sans-serif;
    font-size: 16px;
    font-weight: 200;
    padding-top: 22vh;
    text-align: center;
}

.title {
    letter-spacing: 5px;
    font-size: 48px;
    margin-bottom: 40px;
}

.subtitle {
    font-size: 20px;
    margin-bottom: 40px;
}

.title-holder {
    background: rgba(119,119, 119, 0.8);
    padding: 30px 30px 40px 30px;
    position: absolute;
    right: 22%;
    width: 260px;
}

.links {
    font-size: 28px;
}

.links a {
    margin: 7px;
}

@media screen and (max-width: 518px) {
    body {
        padding-top: 22vh;
    }

    .title-holder {
        position: relative;
        right: auto;
        margin: 0 auto;
        width: 260px;
    }
}