﻿
body {
    margin:0;
    padding:0;
    box-sizing:border-box;
}
.head-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.title {
    text-align: center;
    color: #d98400;
    margin: 10px 0;
}

.back-history {
    display: grid;
    row-gap: 3em;
    margin: 0;
    grid-template-columns: 45% 45%;
    gap: 30px;
    justify-content: center;
    padding: 2em;
    align-items: center;
    justify-items: center;
}
.Dest-Img {
    width: 100%;
    height: 400px;
}
.text {
    padding: 4px 1em;
}
    .text p {
        text-align: justify;
        font-size: 1.4rem;
        color:gray;
    }
    .text h3{
        color:#d98400;
        margin-bottom:1em;
    }
.imgs {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    object-position: center;
}
@media screen and (max-width:900px) {
    .head-img {

        height: 250px;
       
    }
    .back-history {
        grid-template-columns: 1fr
    }
    .title {
        margin: 10px 15px;
    }
    .text{
        padding:4px 0;
    }
}