nav a:nth-child(5) {
    text-decoration: underline;
}

#img1 {
    width: 325px;
}

#content{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background-color: #faeac1;
    padding: 20px;

}

#address{
    width: 400px;
    background-color: #fff3cd;
    padding: 20px;
    display: flex;
    flex-direction: column;
}
#photos{
    display: flex;
    flex-direction: row;
    justify-content: center;

}

ul li p{
    margin: 0px;
}


#img2, #img3 {
    width: 180px;
    height: inherit;
}

@media screen and (max-width: 748px) {
    #content{
        flex-direction: column;
        align-items: center;
    };
}

@media screen and (max-width: 745px) {
    nav a:nth-child(5) {
        text-decoration: none;
    }
    nav a:nth-child(4) {
        text-decoration: underline;
    }
}