body {
    padding: 0;
    margin: 0;
    height: 100vh;
    width: 100vw;
    background-color: #0F0F0F;
    position: relative;
}

body .background {
    position: absolute;
    height: 100%;
    width: 100%;

    background-image: url('../images/construction.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

body .background::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(15, 15, 15, .8);
}

body .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

body .content .content-text h1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6rem;
    color: white;
}

body .content .content-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: .12rem;
    color: #EA2027;
    margin-top: .5rem;
}

body .content .content-social-nav {
    margin-top: 3rem;
}

body .content .content-social-nav .nav-item {
    display: inline-block;
    padding: 0 10px;
}

body .content .content-social-nav .nav-item .nav-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    transition: all .3s ease-in-out;
}

body .content .content-social-nav .nav-item .nav-link:hover {
    color: #EA2027;
}
