/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

main.container {
    display: flex;
    flex-direction: row;
    height: 100vh; /* use full height of the viewport */
}

.left-container, .right-container {
    flex-basis: 50%; /* each container takes up 50% of the width */
    padding: 2em;
    box-sizing: border-box;
    height: 100%; /* use full height of the parent */
}

.left-container {
    background: url('../assets/xrayIA.jpeg') no-repeat center / cover;
    color: #fff; /* white text color */
}

.right-container {
    background-color: black;
    color: #fff; /* white text color */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.right-container h2 {
    margin-bottom: 1em;
}

/* add this to remove the scrollbar */
body, html {
    margin: 0;
    padding: 0;
    overflow-y: hidden;
}