<!DOCTYPE html> <html> <head> <title>VeloCat</title> <meta charset="utf-8" /> <style type="text/css"> body { font-family: 'Roboto', 'Open Sans', sans-serif; -webkit-font-smoothing: antialiased; text-align: center; width: 100%; } h1, h2, h3, h4, h5, h6 { font-family: 'Roboto', sans-serif; } #backgroundFrame { width: 100%; height: 100%; position: fixed; top: 0; left: 0; z-index: 0; background-image: url(https://velocat.cc/images/Stelvio.jpg); background-repeat: no-repeat; background-position: center center; /* background-attachment: fixed; removed for Android */ -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } .vc-logo { width: 30%; position: absolute; top: 20%; left: 35%; } .vc-logo img { width: 100%; } </style> </head> <body> <div id="backgroundFrame"></div> <div class="vc-logo"><img src="https://velocat.cc/images/VeloCatLogo.svg" /></div> </body> </html>