body {
    background-color: white;
    font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "Courier New", monospace, sans-serif;
    color: black;
}
    
.enter {
    display: flex;
    flex-direction: column; /* This stacks items vertically */
    justify-content: center; /* Vertical center (if container has height) */
    align-items: center;     /* Horizontal center for column items */
    margin: auto;
    text-align: center;      /* Ensures the text itself is centered */
}

.enter img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;     /* Optional: adds space between image and text */
}