

/* Blue Background with White Text */
body {
    background-color: blue;
    color: white;
}

/* Set the font of the Hello text */
#continer {
    font-family: 'Times New Roman', Times, serif;
}

/* Button with bevel out border Source: CoPilot */
button {
    background-color: #e0e0e0; /* Base color */
    border: 2px solid #b0b0b0; /* Outer border */
    padding: 10px 20px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    box-shadow: inset 2px 2px 5px #ffffff, /* Top-left highlight */
                inset -2px -2px 5px #888888; /* Bottom-right shadow */
    outline: none;
    transition: all 0.2s ease;
}

/* Button with bevel out border Source: CoPilot */
button:active {
    box-shadow: inset -2px -2px 5px #ffffff, /* Reverse highlight */
                inset 2px 2px 5px #888888; /* Reverse shadow */
}


/* Anchor tages with white text */
a {
    color: white;
}
/* ID that centers the validation text */
#validation {
    text-align: center;
}

/* add a margin around the entire footer */
#footer {
    margin: 50px;
}