

/* style.css */


html, body {
    height: 100%;
    background-color: rgb(29, 29, 29);
    margin: 20px;


    
}

  
main {

    background-color: rgb(29, 29, 29);

    margin: 0;
    padding: 0;
    display: flex;

  
    /* This centers our sketch horizontally. */
    justify-content: center;
  
    /* This centers our sketch vertically. */
    align-items: center;
}

footer{
    margin: 20px;
    padding-bottom: 10px;

}




h1{
    color: white;
    font-family: sans-serif;
    font-size: 20px;
    text-align: center;
}

p {
    color: white;
    font-family: "roboto", sans-serif;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 3px;
   
}