body {
    background-color: black;
    color: orange;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0; /* Remove default margin */
}

.container {
    display: flex;
    flex-direction: row; /* Align items in a row */
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.image-text {
    margin: 20px; /* Add margin between images */
}

.image-text img {
    max-width: 100%;
    height: auto;
    display: block;
}

.image-text p {
    margin-top: 10px;
}
