html, body {
    height: 100%;
}

body {
    background: #fff url("../images/bg-1.jpg") no-repeat 50% 50% fixed;
    background-size: cover;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
}

.wrapper {
    width: 100%;
    height: 100%;
    display: table;
    background: rgba(0,0,0,0.6);
    text-align: center;
}

.inner {
    display: table-cell;
    vertical-align: middle;
}

.name {
    font-size: 60px;
    line-height: 1.1;
    font-weight: 700;
}

.description {
    margin-top: 25px;
    font-size: 22px;
    font-weight: 300;
}

.icons {
    margin: 65px 0 0 0;
    padding: 0;
}

.icons li {
    display: inline-block;
}

.icons li a {
    display: block;
    width: 80px;
    height: 80px;
    border: solid 1px #fff;
    border-radius: 100%;
    font-size: 28px;
    line-height: 80px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.icons li a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
}

@media only screen and (max-width: 599px) {
    .name {
        font-size: 32px;
    }

    .description {
        margin-top: 20px;
        font-size: 16px;
    }

    .icons {
        margin-top: 50px;
    }

    .icons li a {
        width: 65px;
        height: 65px;
        font-size: 24px;
        line-height: 65px;
    }
}
