

.main-container {
    align-items: center;
    justify-content: center;
    padding: 100px;
    background-image: url('/assets/global/launchbg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.content-container {
    text-align: center;
}

.content-container h1 {
    color: #fff;
}

.content-container p {
    color: #ffffffae;
    line-height: 1.6;
}

.content-container img {
    width: 28%;
    height: auto;
    margin: 0 auto 20px;
    display: flex;
}

@media screen and (max-width: 700px) {

    .main-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-image: url('/assets/global/launchbg.jpg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        width: 100%;
        padding: 50px 30px;
    }
    


    .content-container {
        text-align: center;
        width: 100%;
    }

    .content-container h1 {
        color: #fff;
        width: 100%;

    }
    
    .content-container p {
        color: #ffffffae;
        line-height: 1.6;
        width: 100%;

    }
    
    .content-container img {
        width: 150%;
        height: auto;
        display: flex;
    }
  }
