#content{
    background-color: #faeac1;
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: justify;
}

#content h1{
    font-family: Parisienne,Serif;
    font-size: 50px;
    width: 100%;
    text-align: center;
    padding: 10px;
    margin-left: 32vw;
}

#outer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20vw;
}

#content p:nth-child(2){
    margin: 0px;
}

.image{
    max-height: 200px;
}

@media screen and (max-width: 640px) {
    #content{
        padding: 10px 50px 25px;
    }
}

@media screen and (max-width: 1050px) {
   #outer{
       gap: 5vw;
   }

    #content h1{
        margin-left: 20vw;
    }
}

@media screen and (max-width: 840px) {
    .image{
        max-height: 150px;
    }
}

@media screen and (max-width: 745px) {
    #outer{
        gap: 0vw;
    }
    .image{
        margin-left: -10vw;
    }
    #content h1{
        margin-left: 10vw;
    }
}