/* Reset default margin and padding */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

/* Set up the body */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    background-color: #c99232; /* Background color */
    color: white; /* White text */
    text-align: center; /* Center the text */
    font-family: Arial, sans-serif; /* Use a clean font */
}

/* Style for the image */
.image-container img {
    max-width: 100%;
    height: auto;
    margin-top: 20px; /* Adds space from the top */
}

/* Style for the text container */
.text-container {
    padding: 20px;
    max-width: 90vw;
}
