/* Make the body fill the screen and center everything */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background-color: #1C1217; /* blue background */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

/* Style the centered image */
.centered {
    max-width: 80%;
    height: auto;
}