html,
body {
    background: url("images/barber.png") no-repeat fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%;
    width: 100%;
}

h1 {
    margin-top: 2%;
    font-size: 4em;
}

.row {
    margin-top: 15%;
}

.button {
    background-color: transparent;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    border: 1px solid;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    padding: 10px 30px 8px;
    font-size: 16px;
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    letter-spacing: 0.2rem;
    line-height: 1;
    text-transform: uppercase;
}

.button:hover {
    text-decoration: none;
    cursor: pointer;
    color: #000;
}

.button-neutral {
    color: #000;
    border-color: #000;
}

.button-neutral:hover {
    color: #fff;
    background-color: #000;
}