/*titolo pagina */
h1 {
    color: red;
    font-family: sans-serif;
}
/* carica immagine di sfondo */
html {
    background-image: url(galaxy.jpg);
	background-color: black;
}
/* dimensione, font, posizione della frase centrale */
h2 {
    font-family: cursive;
    font-size: 210%;
    width: 37%;

    position: relative;
    top: 45%;
    left: 49%;
    margin-top: 15%;
    margin-left: -15%;
    color: white;
}

/*stile bottoni centrali */
.form1 input[type="submit"] {
    cursor: pointer; 
    color: blue;
    font-family: sans-serif;
    font-weight: 100;
    font-size: 98%;
    text-align: center;
    
    border: solid 2px #000071;
    border-radius: 15px;
    
    padding: 1% 3%;
}
/* moouse sopra button */
.form1 input[type="submit"]:hover {
    background-color: #000071;
    color: #fff;
}
