body {
    background-image:url("rocky-coast-background.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    color:#FFFFFF;
    text-align:center;
    font-family: "Roboto Flex", sans-serif;
    font-weight: normal;
    font-style: normal;
    line-height:1.5;
    /*width: 100vw;  /* 100% of the viewport width */
    /*height: 100vh; /*100% of the viewport height */
    margin:0;
    min-height: 100vh;
    overflow: hidden;
}

#float{
    width:800px;
    margin:85px auto 0px;
}

h1 {
  font-family: "Newsreader", serif;
  font-weight: normal;
  font-style: normal;
  font-size:48px;
  margin:0px;
}

h2 {
    font-family: "Roboto Flex", sans-serif;
    font-weight: normal;
    font-style: normal;
    margin-top:5px;
}

.mobile {
    display:none;
    font-size:18px;
    font-weight:bold;
}

.non-mobile {
    display:block;
    font-size:18px;
    font-weight:bold;
}

#image {
    float:left;
    text-align:center;
}

#image img {
    max-width:200px;
    margin-right:20px;
}

#bio {
    text-align:left;
    font-size:15px;
}

@media only screen and (max-width: 800px) {
    #float {
        width:90%;
    }
    .mobile {
        display:block;
    }
    .non-mobile {
        display:none;
    }
}

@media only screen and (max-width: 500px) {
    body {
        overflow:visible;
    }
    
    h1 {
        font-size:36px;
    }

    #image {
        float:none;
        text-align:center;
    }

    #image img {
        margin:0px;
    }
}