/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set body to fill the entire screen */
body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Center the content vertically and horizontally */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

/* Styling for the title and paragraph */
.text-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.text-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
}

/* Styling for the image row */
.image-row {
    display: flex;
    justify-content: center;
    gap: 25px;
}

/* Image styling */
.image {
    width: 300px;
    height: 300px;
    object-fit: contain;
    border-radius: 8px;
}

.flipx {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
