*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.img-box{
    display: flex;
    justify-content: center;
}
.img{
    width: 90%;
    height: 800px;
    background-image: url("../img/IMG_20240817_191941_910.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.container{
    margin: 0 5%;
}
.container .txt-img{
    margin: 20px 0;
    display: flex;
    align-items: center;
}
.container  div p{
    margin-left: 10px;
}
.container img{
    width: 70px;
}
.container p{
    font-size: 18px;
    color: rgb(34, 34, 34);
}
@media (max-width: 500px){
    .img{
        width: 100%;
    }
    .container{
        margin: 0 0;
    }
}