body {
    margin: 0;
    font-family: sans-serif;
}

.hero {
    /* Sizing */
    width: 100vw;
    height: 100vh;
    
    
    /* Background styles */
/*    background-image: url('https://codetheweb.blog/assets/img/posts/full-image-hero/image.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;*/
}

.hero-inner {
    /* Flexbox stuff */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Text styles */
    text-align: center;
    color: black; /* ADD THIS LINE */

    height: 95vh;
}

.hero h1 {
    /* Text styles */
    /*https://www.smashingmagazine.com/2016/05/fluid-typography/*/
    font-size: calc(0.2em + 6vw);
    font-family: 'DM Serif Display', serif;
    
    /* Margins */
    margin-top: 0;
    margin-bottom: 0.5em;


}


.copyright {
    text-align: center;
    color: gray
}