#picture {
  
    background-image: url("pic1.jpg");
    background-position: 0px 60%;
    background-size: cover;
    display: flex;
    justify-content: center;
}

#picture>div {
    padding-top: 10rem;
    padding-bottom: 10rem;
    padding-left: 3rem;
    padding-right: 3rem;
    text-align: center;

    width: fit-content;
    margin: 3rem;
    color: var(--bg-color);
}

#picture>div>h1 {
    color: var(--bg-color);
}

#picture>div>h2 {
    color: var(--bg-color);
}

#buttonBox {
    display: flex;
    align-items: center;
    justify-content: center;
}

#buttonBox>a {

    margin: 1rem;

}

#services {
    padding: 3rem;
}

#services>p {
    margin-bottom: 2rem;
}

#bio {
    display: grid;
    grid-template-columns: 50% 50%;
}



#bioImg {
    padding: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

#bioImg>img {
    width: 75%;
    border-radius: 1rem;
}

#bioText {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


@media (max-width: 1000px){
    #bio{
        display: flex;
        flex-direction: column;
        
    }
    #bioImg>img {
        width: 100%;
        padding-bottom: 0rem;
        padding-bottom: 0%;
    }
    #bioText{
        padding-top: 0%;
    }
    #buttonBox{
        flex-direction: column;
    }
    #picture>div {
    padding-top: 3rem;
    padding-bottom: 1rem;
    padding-left: auto;
    padding-right: auto;
    }
    #poster{
    width: 80%;
}
}