/* 
cards colours
white #F2F2F2
black ##010101
*/


/* this is to make the website go all the way to the edges of the website*/
html {
    margin: 0%;
    padding: 0%;
    height: 100%;
}
/* this is to make the website go all the way to the edges of the website*/
body {
    margin: 0%;
    height: 100%;
    background-color: #F2F2F2;
    display: flex;
    flex-direction: column;
    align-items: center;
}


header h1 {
    text-align: center;
    color: #010101;
    font-family: Helvetica;
}


.promptdisplay {
    padding: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    font-family: Helvetica;
    box-shadow: 4.0px 8.0px 8.0px hsl(0deg 0% 0% / 0.38); /*i stole this code! https://www.joshwcomeau.com/css/designing-shadows/*/


    border: 1px;
    border-radius: 10px;
    /*dimensions of a real card */
    width: 63mm;
    min-height: 88mm;
    
    
    font-family: Helvetica;
    font-size: 200%;
    background-color: #010101;
    color:#F2F2F2;
}


button {
    background-color: #010101;
    color: #F2F2F2;
    padding: 15px 32px;
    text-align: center;
    font-size: 16px;
    border-radius: 10px;

    box-shadow: 4.0px 8.0px 8.0px hsl(0deg 0% 0% / 0.38); /*i stole this code! https://www.joshwcomeau.com/css/designing-shadows/*/

    margin: 0;
    /* position: absolute; */
    /* left: 50%; */
    width: 158px;
    margin-bottom: 20px;
    /* transform: translate(-50%, -90%); */

}



/*footer*/
.footer {
    /* position: fixed; */
    /* left: 0; */
    background-color: #F2F2F2;
    color: #010101;
    /* bottom: 0; */
    margin-top: auto;
    
    padding: 0%;
    width: 100%;
    padding-bottom: 1px;
    
    text-align: center;
    font-size: 200%;

    font-family:'Times New Roman', Times, serif;
}

.footer small {
    font-size: 10px;
    padding: 0%;
}