/* Set height to 100% for body and html to enable the background to cover the whole page */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: sans-serif; /* Use a clean, simple font */
    background-color: #fff; /* White background */
    color: #333; /* Dark gray text color */
}

.container {
    /* Center the content horizontally and vertically */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    text-transform: uppercase;
}

p {
    font-size: 1.2em;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
 /* Optional, as long as it's not 100% */
}