#hero h1 {
    margin-bottom:100px;
}


#hero-mobile {

    position:relative;

    display:none;

    height:100%;
    min-height:800px;

    background-image: linear-gradient(to bottom, #51515100, #050505), url("../img/Me.jpg");
    background-size:cover;
    background-position: center;
 
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

#hero-mobile h1 {
    color:white;
    font-weight:600;
    font-size:1.5rem;
}

#hero-mobile h2 {
    font-size:1.6rem;
    color:#d1d1d1;
}

#hero-mobile .hero-content {
    margin-top:75px;
    padding:10px;
}

#hero-mobile .hero-content * {
    margin:30px 0;
}

#hero-mobile .links {
    position:absolute;
    bottom:0;
}

#hero-mobile .links p {
    margin: 40px 0;
}

#hero-mobile img {
    width:20px;
    margin-right: 6px;
}

#hero-mobile a {
    color:#d1d1d1;
    font-weight:normal;
    text-decoration: none;
    letter-spacing: 6px;
}

@media (max-width: 1200px) {
    #hero-mobile {
        display:flex;
    }

    .hero {
        display:none;
    }
}