@charset "utf-8";

body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
	width: 100%;
}

#background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('/assets/cosmicback.jpg');
    background-size: cover;
    background-position: center;
    transition: transform 0.1s ease-out;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    pointer-events: none;
}

#title {
	font-family: Roboto, san-serif;
	font-weight: 200;
    color: #FFF;
    font-size: 5em;
    text-align: center;
}
