body {
   background-color: coral; 
}

h1 {
    text-align: center;
    color: black;
    font-family: arial;
}

#box {
    font-family: courier;
    background-color: white;
    margin: auto;   /* this will center the css box */
    padding: 25px   /* defines space between the text and the border */;
    width: 400px;
    border-radius: 5px;
    border-style: solid;
    border-color: black;
}

::placeholder {
    font-family: courier;
}

.emailForm {
    font-size: 15px;
}

#userName {
    color: black;
    border-style: solid;
    border-color: black;
}

#userEmail {
    color: black;
    border-style: solid;
    border-color: black;
}

input[type="text"] {
    padding: 5px;
    width: 50%;
    border: 1px solid;
}

