*,*::before, 
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Delius Unicase", cursive;
background-color: #fff;
color: #000000;
}


.pager-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    width: min(90%, 1170px);
   margin: 0 auto;
   padding-bottom: 120px;
}

h2 {
    font-size: 2.25rem;
    text-align: center;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 1.9px;
    margin-bottom: 80px;
}

section {
    padding-top: 120px ;   
}

.grid
{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(3,1fr);
    grid-gap: 30px;
}

.large-horizontal {
    grid-column: span 2;
}
.nature {
    grid-template-rows: repeat(4, 1fr);
}

.photo {
grid-area: 2/1/4/3;
}

.large-vertical {
    grid-row: span 2;
}

.pepole {
    grid-template-rows: repeat(5, 1fr);
}