html {
    background: url(cross.png) repeat;
    background-size: cover;
    height: 100%;
}

body {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    text-align: center;
    font-size: 28px;
    color: white;
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    padding: 50px;
}

@media (min-width: 800px){
    body {
        padding: 100px;
    }
}

h1 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: black;
}

.links a {
    display: inline-block;
}

p {
    margin-top: .5em
}

a {
    padding: 10px 20px;
    text-decoration: none;
    -webkit-transition: ease-in-out all .4s;
    transition: ease-in-out all .4s;
    cursor: pointer;
}

a:hover,
a:active,
a:focus{
    cursor: pointer;
}

a{
    color: black;
    background: white;
    margin-right: 10px;
    transition: all .5s;
}

a:hover {
    color: white;
    background: black;
    box-shadow: 0px 0px 10px 8px rgba(255,255,255,0.75);
}