/* Styling for the main background section */
/*.main-section {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    height: 100vh;*/
/*    background-image: url("../../img/27851e.png");*/
/*    background-position: center;*/
/*    background-size: cover;*/
/*    text-align: center;*/
/*}*/
.main-section {
            background-image: url("../../img/27851e.png"); /* Replace with your image path */
            background-size: cover; /* Cover the entire section */
            background-position: center; /* Center the image */
            height: 91.5vh;  /* Full viewport height */
            display: flex;
            flex-direction: column;
            justify-content: center; /* Center text vertically */
            align-items: flex-end; /* Align text to the right */
            padding-right: 50px; /* Space from the right edge */
            font-family: Arial, sans-serif; /* Font similar to the image */
            box-sizing: border-box; /* Ensure padding doesn't affect layout */
        }
.text-container {
            text-align: right; /* Align all text to the right */
        }

        .main-section h1 {
            margin: 0;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Shadow for readability */
            line-height: 1.2; /* Adjust line spacing */
        }

        .main-section .part1 {
            font-size: 1em; /* Larger font for "EMPOWERING THE" */
            font-weight: 500;
        }

        .main-section .part2 {
            font-size: 1em; /* Slightly smaller for "NEXT GENERATION OF SPACE ENGINEERS" */
            font-weight: 500;
        }

        .main-section p {
            font-size: 2em; /* Font size for "JOIN US" */
            font-weight: normal;
            color: white;
            margin-top: 20px; /* Space between the main text and "JOIN US" */
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Shadow for readability */
        }
/* Styling for content below the background image */
.content-section {
    padding: 40px 20px;
    background-color: #fafafa;
    text-align: start;
    background-color:black;
}


