/* Reset some default styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Make body full height and center content */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f9f5ef;
    padding: 20px;
}

/* Outer container holding both blocks */
.outer-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    flex-wrap: wrap; /* Allows blocks to stack on smaller screens */
    /*max-width: 1000px;*/
    width: 100%;
	border: 0px red solid;
}

/* Individual blocks */
.block {
    background-color: #f9f5ef;
    padding: 20px;
    border-radius: 12px;
    /*box-shadow: 0 4px 10px rgba(0,0,0,0.1);*/
    flex: 1 1; /* Flex-grow, flex-shrink, 400px base width */
	border: 0px blue solid;
	max-width: 450px
}

/* Image styling */
.image-block img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
	border: 0px green solid;
    text-align: center;
}

/* Responsive text block */
.text-block p {
    font-size: 0.75rem;
    line-height: 1.5;
    color: #29435a;
}

/* Media query for very small screens */
@media (max-width: 600px) {
    .outer-container {
        flex-direction: column;
        gap: 0px;
    }

    .text-block p {
        font-size: 0.65rem;
    }
}
