.hand{
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-size: cover; 
}

.content{
    margin-top:40vh;
    margin-left: 48px;
}

h1.header{
    margin-bottom: 8px;
}

p.desc{
    margin-top: 8px;
    margin-bottom: 32px;
}

/* responsive */
@media(max-width: 1025px)
{
    .hand{
        display: none;
    }
}

/* responsive */
@media(max-width: 1025px)
{
    .hand{
        display: none;
    }

    .content{
        margin-top:40vh;
        margin-left: 0px;
        align-self: center;
        align-items: center;
        text-align: center;
    }

}