*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #FFF;
    font-family: "Delius Unicase", cursive;
    color: #000;
}

.page-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;
}

section {
    padding-bottom: 120px;
}

section:first-of-type {
    padding-top: 120px;
}

h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 2.8125rem;
    font-style: normal;
    letter-spacing: 0.05em;
    margin-bottom: 80px;
}

.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);
}*/

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

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

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