/* Set colors for the page */
body{
    background-color: rgb(4, 4, 86);
    color: rgb(250, 250, 250); /* this is the font color*/
}



img{
    width: 60%;
    display: block;
    margin: 10px auto; 
    /* this set of 3 commands centers. 10px is spacing top and bottom, auto is left and right*/
}

h1{
    color: rgb(255, 242, 57);
    font-family: serif;
    font-size: 100px;
    text-align: center;
    
}


h2{
text-align: center;
 color: rgb(255, 242, 57);
}

h3{
text-align: center;
 color: rgb(255, 242, 57);
}

p {
text-align: center;
margin-left: 100px;
margin-right: 100px;

}