@media screen and (max-width: 767px){
    .mobileIncomplete {
        display: block;
        background-color: #f8d7da; /* Light red background */
        color: #721c24; /* Dark red text color */
        padding: 10px;
        text-align: center;
        font-size: 16px;
        margin-bottom: 20px; /* Adds some space between the message and the content */
        border: 1px solid #f5c6cb; /* Border for emphasis */
    }
    
    .mobileIncomplete p {
        margin: 0; /* Remove default margin for paragraphs */
    }
    main{
        display: none;
    }
    footer{
        display: none;
    }
}
/* @media screen and (min-width: 768px) and (max-width: 1023px){
    tablet
    .mobile-incomplete {
        display: none;
    }
} */

@media screen and (min-width: 1024px){
    .mobileIncomplete {
        display: none; /* Hide the message on larger screens */
    }
    body{
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        min-height: 100vh;
        overflow-x: hidden;
        /* background-image: url(images/newInfoBox.png);
        background-size: 500px 800px;
        background-position: 0px top; 
        background-repeat: no-repeat; */
    }
    .hero-top {
        background-color: rgb(255, 255, 255, 0.9);
    }
    main{
        margin: 0px 24px;
        box-sizing: border-box;
        letter-spacing: 0.03em;
        line-height: 1.6
    }
    #query{
        width: 100%;
        margin: 300px auto; 
    }
    .spaceBtwn{
        margin-top: 200px;
        margin-bottom: 152px;
        transform: scale(0.9);
        opacity: 0.4;
        transition: opacity 0.8s ease, transform 0.5s ease;
        padding: 0.5rem;
    }
    .spaceBtwn.active{
        opacity: 1;
        transform: scale(1);
    }
    #topBG{
        margin-top: 32px;
    }
    #infoBox p{
        width: 475px;
    }
    #arrowContainer {
        display: flex;
        justify-content: center;
        align-items: center;

        position: absolute;
        bottom: 32px;
        left: 50%;
        z-index: 5;
    }
    #arrow {
        animation: moveUpDown 1s ease infinite;
        width: 80px;
        height: 80px;
    }
    @keyframes moveUpDown {
        0%, 100% {
            transform: translateX(-50%) translateY(0);
        }
        50% {
            transform: translateX(-50%) translateY(-10px); 
        }
    }
    article{
        width: calc(100% - 0px);
        margin: none;
    }
    img{
        justify-content: center;
        align-items: center;
        display: block;
        margin: auto;
        max-width: 100%;
        max-height: 100%;
    }
    .data{
        display: flex;
        justify-content: space-between; 
        gap: 24px;
    }
    .dataimg{
        display: flex;
        justify-content: space-evenly; 
        gap: 16px;
    }
    .data div{
        flex: 1;
    }
    .data540{
        display: flex;
    }
    .data540 div{
        flex: content;
    }
    .text540, .text540 ul{
        width: 540px;
    }
}   
/* @media screen and (min-width: 1650px){
    body{
        background-image: url(images/umeInfoBG.png);
        background-size: 100% 850px;
        background-position: center top; 
        background-repeat: no-repeat;
    }
    #topBG{
        margin-top: 10px;
        margin-bottom: 110px;
    }
} */
/* @media screen and (min-width: 1850px){
    body{
        background-image: url(images/umeInfoBG.png);
        background-size: 100% 950px;
        background-position: center top; 
        background-repeat: no-repeat;
    }
    #topBG{
        margin-top: 50px;
        margin-bottom: 150px;
    }
} */