@charset "UTF-8";
/* CSS Document */
*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}
html, body{
    height:100%;
}
body{
    background-color:#DDD;
}
#wrapper{
    max-width:1000px;
    margin:0 auto;
    background-color:#000;
    height:800px;
    padding:0.5%;
    position:relative;
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
    overflow:hidden;
}
#info{
    display:flex;
}
h1, h2{
    color:#FFF;
    font-weight: normal;
    padding-bottom:1em;
}
#time, #points{
    color:#FFF;
    font-size: 1.5em;
    flex:1;
}
#points{
    text-align: right;
}
#start{
    margin-top:300px;
    text-align:center;
}
#start button{
    padding:1%;
    border-radius: 5px;
    color:#F00;
    font-size:2em;
    cursor:pointer;
    font-family:"Helvetica Neue", Helvetica, Arial, "sans-serif";
    font-weight:bold;
}
#ship{
    position:absolute;
    top: 600px; 
    left: 475px;
    transition: transform 500ms;
}
#nose{
    /*background-color:#F00; */
    width:20px; 
    height:20px; 
    position:absolute; 
    top:0;
    left:15px;
    z-index:2;
}


