.project-container
{
    position: absolute;
    margin-top: 7px;
    display: flex;
    width: 100vw;
}

.project_gap
{
    display: block;
    width: 100%;
    height: 200px;
}

#frame_line_1{
    position: absolute;
    right: 12%;
    top: 20%;
    width: 5px;
    height: 60vw;
    background-color: #bc6c25ff;
    border-radius: 10px;
    z-index: -1;
}

#questions{
    display: flex;
    flex-direction: column;
    width: 70%;
    justify-content: center;
    margin: auto;
    padding: 20px;
}

#questions p{
    margin: 0;
    font-size: 1.1vw;
    color: #283618ff;
    text-align: justify;
    line-height: 1.4;
}

.question{
    margin: 15px 0;
}

#intro{
    display: flex;
    flex-direction: row;
    margin-top: 30px;
    gap: 30px;
}

#who_what{
    display: flex;
    flex-direction: column;
    flex: 1;
}

#headshot{
    margin: auto 0;
    max-width: 20vw;
    max-height: 20vw;
    object-fit: cover;
}

#follow-up{
    display: flex;
    flex-direction: row;
    gap: 30px;
}

#when_where_why{
    display: flex;
    flex-direction: column;
    flex: 1;
}

#FfF{
    max-width: 30vw;
    max-height: 20vw;
    margin: auto 0;
    object-fit: cover;
}

#why, #what_now{
    margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
    #questions {
        width: 85%;
    }
    
    #questions p {
        font-size: 1.5vw;
    }
}

@media screen and (max-width: 768px) {
    #questions {
        width: 95%;
        padding: 15px;
    }

    #questions p {
        font-size: 16px;
        text-align: left;
    }

    #intro, #follow-up {
        flex-direction: column;
        gap: 20px;
    }

    #headshot, #FfF {
        max-width: 100%;
        max-height: 300px;
        margin: 10px auto;
    }

    #intro {
        flex-direction: column-reverse;
    }

    #frame_line_1 {
        display: none;
    }
    
    .project_gap {
        height: 100px;
    }
}