/*mandatory declarations*/
/*id centers the validation text*/
#validation {
    text-align: center;
}

/*margin around footer*/
footer {
    margin: 50px;
    color: #ffffff;
}

/*bold names*/
.bold {
    font-weight: bold;
}

/*body color*/
body {
    background-color: #000000;
}

/*heading color and align*/
h1 {
    color: #ffffff;
    text-align: center;
}

/*styles for container - color, border, align, size*/
#container {
    background-color: #7D0C0C;
    color: #ffffff;
    
    border: 2px solid #FF0000;
    border-radius: 5px;

    text-align: center;
    margin: 0 auto 30px;

    width: 400px;
    height: auto;
}

/*styles for button - color, border, align, size*/
button {
    background-color: #ffffff;
    color: #000000;

    border: 2px solid #FF0000;
    border-radius: 8px;
    
    display: block;
    margin: 0 auto;
    text-align: center; 

    width: 200px;
    padding: 12px 20px;
}