@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-color: white;
    }
    main{
        margin: 200px 24px 0px 24px;
        box-sizing: border-box;
        color: rgb(94, 95, 94);
        letter-spacing: 0.03em;
        line-height: 1.6
    }
    #query {
        width: 100%;
        margin: 0 auto; 
    }
    .data{
        display: flex;
    }
    #fillTime{
        flex: 1;
    }
    #headShot{
        flex: 1;
        display: flex;              
        justify-content: center; 
        align-items: center; 
        padding-top: 56px;
    }
    #exp{
        justify-content: center;
        margin-bottom: 96px;
    }
    #exp h3{
        margin-top: 32px;
    }
    #exp p{
        margin-bottom: 0px;
        font-size: 18px;
    }
    #exp .smolP{
        margin-top: 8px;
        padding-bottom: 16px;
    }
    .fade-in {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }
}
@media screen and (min-width: 1240px) {
    /* #intro {
        margin-bottom: 144px;
    } */
}
@media screen and (min-width: 1440px) {
    /* #intro {
        margin-top: 40px;
        margin-bottom: 296px;
    } */
}
@media screen and (min-width: 1600px) {
    /* #intro {
        margin-top: 72px;
        margin-bottom: 358px;
    } */
}
@media screen and (min-width: 1700px) {
    /* #intro {
        margin-top: 88px;
        margin-bottom: 406px;
    } */
}    
@media screen and (min-width: 1900px) {
    /* #intro {
        margin-top: 128px;
        margin-bottom: 478px;
    } */
}
